25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

28 satır
963 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 restore
  15. run: dotnet restore ./src/JT809.Protocol.sln
  16. - name: dotnet build
  17. run: dotnet build ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj
  18. - name: dotnet test
  19. run: dotnet test ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj
  20. - name: dotnet JT809.Protocol.Extensions.JT1078.Test build
  21. run: dotnet build ./src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078.Test/JT809.Protocol.Extensions.JT1078.Test.csproj
  22. - name: dotnet JT809.Protocol.Extensions.JT1078.Test test
  23. run: dotnet test ./src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078.Test/JT809.Protocol.Extensions.JT1078.Test.csproj