Skip to content

Bump qs from 6.10.3 to 6.13.0 in /ntbs-service #1925

Bump qs from 6.10.3 to 6.13.0 in /ntbs-service

Bump qs from 6.10.3 to 6.13.0 in /ntbs-service #1925

Workflow file for this run

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