Skip to content

Commit 6dcd821

Browse files
prandlawil93
authored andcommitted
Run github actions on debian aswell
1 parent 0c59270 commit 6dcd821

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88
test:
99
runs-on: ubuntu-24.04
1010

11+
strategy:
12+
matrix:
13+
base_image: ["ubuntu:noble", "debian:bookworm"]
14+
1115
steps:
1216
- uses: actions/checkout@v2
1317

@@ -17,7 +21,8 @@ jobs:
1721
1822
- name: Build docker image
1923
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
2126
2227
- name: Run tests
2328
run: |

0 commit comments

Comments
 (0)