Add docker and integration test
This commit is contained in:
parent
bd04e6518d
commit
8c50ac2c83
1 changed files with 4 additions and 0 deletions
4
.github/workflows/build-and-test.yml
vendored
4
.github/workflows/build-and-test.yml
vendored
|
@ -18,6 +18,10 @@ jobs:
|
|||
run: dotnet build
|
||||
- name: Run Unit Tests
|
||||
run: dotnet test --filter Unit --no-restore --verbosity normal
|
||||
- name: Start containers
|
||||
run: docker-compose -f "docker-compose.yml" up -d --build
|
||||
- name: Run Integration Tests
|
||||
run: dotnet test --filter Integration --no-restore --verbosity normal
|
||||
- name: Test Report
|
||||
uses: dorny/test-reporter@v1
|
||||
if: success() || failure()
|
||||
|
|
Loading…
Reference in a new issue