mirror of
https://github.com/ovh/debian-cis.git
synced 2025-07-15 13:22:18 +02:00

Currently, the only LTS Debian are 11 and 12 We only support CIS for LTS debian Co-authored-by: Damien Cavagnini <damien.cavagnini@corp.ovh.com>
21 lines
536 B
YAML
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
|