Skip to content

Commit de7f12e

Browse files
committed
Changed to sequential jobs for check.container-run.yml
1 parent 30912bb commit de7f12e

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/check.container-run.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ jobs:
88
bunny-run:
99
name: Run bunny integration test
1010
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
pull-requests: write
14+
1115
steps:
1216
- name: Check out the repo
1317
uses: actions/checkout@v4
1418

15-
- name: Run bunny integration test
19+
- name: Run bunny wrapper entrypoint smoke test
1620
working-directory: docker/bunny-wrapper
1721
run: docker compose -f test.compose.yml up --build --exit-code-from bunny
1822

@@ -27,7 +31,8 @@ jobs:
2731
[ "$STATUS" = "ok" ] || (echo "Expected status=ok, got "$STATUS" && exit 1)
2832
2933
analytics-dev-run:
30-
name: Run analytics dev integration tests
34+
needs: bunny-run
35+
name: Run analytics dev entrypoint smoke test
3136
runs-on: ubuntu-latest
3237
steps:
3338
- name: Check out the repo

0 commit comments

Comments
 (0)