Bump Microsoft.NET.Test.Sdk from 17.1.0 to 17.11.0 #1920
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run tests | |
on: | |
push | |
jobs: | |
test-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup .NET 6.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
# Run all the tests | |
- name: Run unit tests | |
working-directory: ntbs-service-unit-tests | |
run: dotnet test | |
- name: Run unit tests (EF auditer) | |
working-directory: EFAuditer-tests | |
run: dotnet test | |
- name: Run integration tests | |
working-directory: ntbs-integration-tests | |
run: export ASPNETCORE_hostBuilder__reloadConfigOnChange=false; dotnet test |