25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
641 B

  1. name: .NET Core
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@master
  8. - name: Setup .NET Core
  9. uses: actions/setup-dotnet@master
  10. with:
  11. dotnet-version: 6.0.400
  12. - name: dotnet info
  13. run: dotnet --info
  14. - name: dotnet JT808.Gateway restore
  15. run: dotnet restore ./src/JT808.Gateway.sln
  16. - name: dotnet JT808.Gateway build
  17. run: dotnet build ./src/JT808.Gateway.Tests/JT808.Gateway.Test/JT808.Gateway.Test.csproj
  18. - name: dotnet JT808.Gateway test
  19. run: dotnet test ./src/JT808.Gateway.Tests/JT808.Gateway.Test/JT808.Gateway.Test.csproj