SmallChi(Koike)
5 år sedan
committed by
GitHub
förälder
incheckning
aafb82b316
Ingen känd nyckel hittad för denna signaturen i databasen
GPG-nyckel ID: 4AEE18F83AFDEB23
1 ändrade filer med
23 tillägg och
0 borttagningar
-
.github/workflows/dotnetcore.yml
|
|
@@ -0,0 +1,23 @@ |
|
|
|
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: 3.1.101 |
|
|
|
- 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 |