Add docker and integration test

This commit is contained in:
Alex Hyett 2023-07-10 11:53:30 +01:00
parent bd04e6518d
commit 8c50ac2c83

View file

@ -18,6 +18,10 @@ jobs:
run: dotnet build run: dotnet build
- name: Run Unit Tests - name: Run Unit Tests
run: dotnet test --filter Unit --no-restore --verbosity normal 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 - name: Test Report
uses: dorny/test-reporter@v1 uses: dorny/test-reporter@v1
if: success() || failure() if: success() || failure()