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 0c59270 commit 6dcd821Copy full SHA for 6dcd821
.github/workflows/main.yml
@@ -8,6 +8,10 @@ jobs:
8
test:
9
runs-on: ubuntu-24.04
10
11
+ strategy:
12
+ matrix:
13
+ base_image: ["ubuntu:noble", "debian:bookworm"]
14
+
15
steps:
16
- uses: actions/checkout@v2
17
@@ -17,7 +21,8 @@ jobs:
21
18
22
- name: Build docker image
19
23
run: |
20
- docker compose -p cms -f docker/docker-compose.test.yml build testcms
24
+ docker compose -p cms -f docker/docker-compose.test.yml build \
25
+ --build-arg BASE_IMAGE=${{ matrix.base_image }} testcms
26
27
- name: Run tests
28
0 commit comments