mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
21 lines
533 B
YAML
21 lines
533 B
YAML
---
|
|
name: Run functionnal tests
|
|
on:
|
|
- pull_request
|
|
- push
|
|
jobs:
|
|
functionnal-tests-docker-debian9:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
- name: Run the tests debian9
|
|
run: ./tests/docker_build_and_run_tests.sh debian9
|
|
functionnal-tests-docker-debian10:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
- name: Run the tests debian10
|
|
run: ./tests/docker_build_and_run_tests.sh debian10
|