1.1.1.1 complet #1410
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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 |