Files
debian-cis/.github/workflows/functionnal-tests.yml
Damien Cavagnini 5ee187c7ca chore: drop debian 10 and below support
Currently, the only LTS Debian are 11 and 12
We only support CIS for LTS debian
2025-07-04 14:10:46 +02:00

21 lines
536 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@v4
- 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@v4
- name: Run the tests debian12
run: ./tests/docker_build_and_run_tests.sh debian12