dotnet-core.yml 526 B

12345678910111213141516171819202122232425
  1. name: .NET Core
  2. on:
  3. push:
  4. branches: [ master ]
  5. pull_request:
  6. branches: [ master ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: Setup .NET Core
  13. uses: actions/setup-dotnet@v1
  14. with:
  15. dotnet-version: 5.0.100-rc.1.20452.10
  16. - name: Install dependencies
  17. run: dotnet restore
  18. - name: Build
  19. run: dotnet build --configuration Release --no-restore
  20. - name: Test
  21. run: dotnet test --no-restore --verbosity normal UnitTests/