Skip to content

Commit 43288df

Browse files
committed
ci: only run one verifier at a time
1 parent 4e43d7e commit 43288df

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v4
21-
- name: Test
21+
- name: Test (ruby standalone - docker)
2222
run: GIT_BRANCH=${GITHUB_REF:11} make test
23+
- name: Test (native standalone - docker)
24+
run: GIT_BRANCH=${GITHUB_REF:11} make test_native
2325

2426
# Runs on branches as well, so we know the status of our PRs
2527
can-i-deploy:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ fake_ci_webhook:
4242
## =====================
4343

4444
test: .env
45-
docker compose up --exit-code-from pact_verifier
45+
docker compose up pact_verifier --exit-code-from pact_verifier
4646
docker compose logs pact_verifier
4747
test_native: .env
48-
docker compose up --exit-code-from pact_verifier_native
48+
docker compose up pact_verifier_native --exit-code-from pact_verifier_native
4949
docker compose logs pact_verifier_native
5050

5151
## =====================

0 commit comments

Comments
 (0)