-
Notifications
You must be signed in to change notification settings - Fork 107
27 lines (23 loc) · 963 Bytes
/
dotnetcore.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup .NET Core
uses: actions/setup-dotnet@master
with:
dotnet-version: 9.0.100
- name: dotnet info
run: dotnet --info
- name: dotnet restore
run: dotnet restore ./src/JT809.Protocol.sln
- name: dotnet build
run: dotnet build ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj
- name: dotnet test
run: dotnet test ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj
- name: dotnet JT809.Protocol.Extensions.JT1078.Test build
run: dotnet build ./src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078.Test/JT809.Protocol.Extensions.JT1078.Test.csproj
- name: dotnet JT809.Protocol.Extensions.JT1078.Test test
run: dotnet test ./src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078.Test/JT809.Protocol.Extensions.JT1078.Test.csproj