Bertrand Lanson
4ac904dea7
All checks were successful
test / Linting (push) Successful in 6s
test / Molecule tests (default, debian11) (push) Successful in 37s
test / Molecule tests (default, debian12) (push) Successful in 38s
test / Molecule tests (default, ubuntu2004) (push) Successful in 38s
test / Molecule tests (default, ubuntu2204) (push) Successful in 38s
test / Molecule tests (with_extra_sidecars, debian11) (push) Successful in 39s
test / Molecule tests (with_extra_sidecars, debian12) (push) Successful in 39s
test / Molecule tests (with_extra_sidecars, ubuntu2004) (push) Successful in 39s
test / Molecule tests (with_extra_sidecars, ubuntu2204) (push) Successful in 39s
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
---
|
|
name: test
|
|
on: [push]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Linting
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: git.ednz.fr/container-factory/ansible-runner:act-latest
|
|
credentials:
|
|
username: ${{ secrets.ACTIONS_USER }}
|
|
password: ${{ secrets.ACTIONS_TOKEN }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "Ansible lint"
|
|
run: ansible-lint --force-color
|
|
working-directory: ${{ gitea.workspace }}
|
|
|
|
- name: "YAML lint"
|
|
run: yamllint . -f colored -c .yamllint
|
|
working-directory: ${{ gitea.workspace }}
|
|
|
|
molecule-test:
|
|
name: Molecule tests
|
|
runs-on: ubuntu-latest
|
|
needs: lint
|
|
container:
|
|
image: git.ednz.fr/container-factory/ansible-runner:act-latest
|
|
credentials:
|
|
username: ${{ secrets.ACTIONS_USER }}
|
|
password: ${{ secrets.ACTIONS_TOKEN }}
|
|
strategy:
|
|
matrix:
|
|
test_os: [debian11, debian12, ubuntu2004, ubuntu2204]
|
|
scenario: [default, with_extra_sidecars]
|
|
env:
|
|
ANSIBLE_HOST_KEY_CHECKING: 'false'
|
|
ANSIBLE_FORCE_COLOR: 'true'
|
|
ANSIBLE_PYTHON_INTERPRETER: /usr/bin/python3
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "Molecule test"
|
|
run: molecule test -s ${{ matrix.scenario }}
|
|
shell: bash
|
|
working-directory: ${{ gitea.workspace }}
|
|
env:
|
|
MOLECULE_TEST_OS: ${{ matrix.test_os }}
|