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
Split restore
  • Loading branch information
alexeyzimarev committed Dec 27, 2024
commit 9bd40c96a67576d9fa00dc6bd47ad4d2fe62c88a
7 changes: 5 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,21 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
-
name: Restore
run: |
dotnet restore -c "Debug CI" -f net${{ matrix.dotnet-version }}
-
name: Build
run: |
dotnet build -c "Debug CI" -f net${{ matrix.dotnet-version }}
dotnet build -c "Debug CI" -f net${{ matrix.dotnet-version }} --no-restore
-
name: Prepare Testcontainers Cloud agent
if: env.TC_CLOUD_TOKEN != ''
uses: atomicjar/testcontainers-cloud-setup-action@main
-
name: Run tests
run: |
echo "dotnet test -c "Debug CI" --no-build -f net${{ matrix.dotnet-version }}"
dotnet test -c "Debug CI" --no-build -f net${{ matrix.dotnet-version }}
-
name: Upload Test Results
Expand Down
Loading