Skip to content

Commit aab8517

Browse files
committedDec 13, 2024
Split building the test image and running tests
This makes navigating the logs in the GitHub actions UI eaiser.
1 parent b1721f0 commit aab8517

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎.github/workflows/integration-tests.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v4
1616

17-
- name: Run integration tests with docker compose
17+
- name: Build test image
18+
run: |
19+
cd integration-tests
20+
docker compose build
21+
22+
- name: Run integration tests
1823
env:
1924
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2025
run: |
2126
cd integration-tests
22-
docker compose up --build --abort-on-container-exit
27+
docker compose up --abort-on-container-exit
2328

0 commit comments

Comments
 (0)
Failed to load comments.