Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

24 linhas
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: 5.0.100
  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