Merge pull request #772 from dolittle/deps #492
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: Integration Tests | |
on: | |
push: | |
paths: | |
- 'Source/**' | |
- 'Integration/Tests/**' | |
- 'Integration/Shared*/**' | |
- '.github/workflows/integration-tests.yml' | |
jobs: | |
ci: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Run Mongo container | |
run: docker run -p 27017:27017 -d dolittle/mongodb:4.2.2 | |
- name: Test | |
run: dotnet test --filter Tag=IntegrationTest -f net8.0 --configuration Release |