We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30912bb commit de7f12eCopy full SHA for de7f12e
1 file changed
.github/workflows/check.container-run.yml
@@ -8,11 +8,15 @@ jobs:
8
bunny-run:
9
name: Run bunny integration test
10
runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ pull-requests: write
14
+
15
steps:
16
- name: Check out the repo
17
uses: actions/checkout@v4
18
- - name: Run bunny integration test
19
+ - name: Run bunny wrapper entrypoint smoke test
20
working-directory: docker/bunny-wrapper
21
run: docker compose -f test.compose.yml up --build --exit-code-from bunny
22
@@ -27,7 +31,8 @@ jobs:
27
31
[ "$STATUS" = "ok" ] || (echo "Expected status=ok, got "$STATUS" && exit 1)
28
32
29
33
analytics-dev-run:
30
- name: Run analytics dev integration tests
34
+ needs: bunny-run
35
+ name: Run analytics dev entrypoint smoke test
36
37
38
0 commit comments