dotnetcore.yml 337 B

12345678910111213141516171819
  1. name: .NET
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - name: Setup .NET
  9. uses: actions/setup-dotnet@v2
  10. with:
  11. dotnet-version: 5.0.x
  12. - name: Test
  13. run: dotnet test --no-build --verbosity normal
  14. - name: Build
  15. run: dotnet build --no-restore