Files
debian-cis/.github/workflows/functionnal-tests.yml
damien cavagnini 9f159985a4 feat: add trixie docker build
Ensure the current debian12 scripts are going to run on trixie
2025-09-03 14:38:04 +02:00

28 lines
770 B
YAML

---
name: Run functionnal tests
on:
- pull_request
- push
jobs:
functionnal-tests-docker-debian11:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Run the tests debian11
run: ./tests/docker_build_and_run_tests.sh debian11
functionnal-tests-docker-debian12:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Run the tests debian12
run: ./tests/docker_build_and_run_tests.sh debian12
functionnal-tests-docker-debian13:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Run the tests debian13
run: ./tests/docker_build_and_run_tests.sh debian13