Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to override events and expected version #397

Merged
merged 15 commits into from
Dec 27, 2024
Prev Previous commit
Next Next commit
Specify target
  • Loading branch information
alexeyzimarev committed Dec 27, 2024
commit 4aa85180123ad53d3f8595278a97b2979e1ce745
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
dotnet-version: [ '8.0.x', '9.0.x' ]
dotnet-version: [ '8.0', '9.0' ]
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
TC_CLOUD_TOKEN: ${{ secrets.TC_TOKEN }}
Expand All @@ -39,15 +39,15 @@ jobs:
-
name: Build
run: |
dotnet build -c "Debug CI"
dotnet build -c "Debug CI" -f net${{ matrix.dotnet-version }}
-
name: Prepare Testcontainers Cloud agent
if: env.TC_CLOUD_TOKEN != ''
uses: atomicjar/testcontainers-cloud-setup-action@main
-
name: Run tests
run: |
dotnet test -c "Debug CI" --no-build
dotnet test -c "Debug CI" --no-build -f net${{ matrix.dotnet-version }}
-
name: Upload Test Results
if: always()
Expand Down
Loading