mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-03 00:30:18 +01:00
Issue #202: Separate linting into separate job and run in correct folder.
This commit is contained in:
parent
a20c887c6e
commit
d4aeccde26
1 changed files with 32 additions and 5 deletions
37
.github/workflows/ci.yml
vendored
37
.github/workflows/ci.yml
vendored
|
@ -8,14 +8,40 @@ name: CI
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 5 * * 0"
|
- cron: "0 5 * * 0"
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: 'geerlingguy.apache'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
test:
|
lint:
|
||||||
|
name: Lint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out the codebase.
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: 'geerlingguy.apache'
|
||||||
|
|
||||||
|
- name: Set up Python 3.
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
|
||||||
|
- name: Install test dependencies.
|
||||||
|
run: pip3 install yamllint ansible-lint
|
||||||
|
|
||||||
|
- name: Lint code.
|
||||||
|
run: |
|
||||||
|
yamllint .
|
||||||
|
ansible-lint
|
||||||
|
|
||||||
|
molecule:
|
||||||
name: Molecule
|
name: Molecule
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
MOLECULE_DISTRO:
|
distro:
|
||||||
- centos8
|
- centos8
|
||||||
- centos7
|
- centos7
|
||||||
- ubuntu2004
|
- ubuntu2004
|
||||||
|
@ -33,12 +59,13 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Install test dependencies.
|
- name: Install test dependencies.
|
||||||
run: pip3 install molecule[docker] yamllint ansible-lint
|
run: pip3 install molecule[docker]
|
||||||
|
|
||||||
- name: Run Molecule tests.
|
- name: Run Molecule tests.
|
||||||
run: molecule test
|
run: |
|
||||||
|
cd molecule
|
||||||
|
molecule test
|
||||||
env:
|
env:
|
||||||
PY_COLORS: '1'
|
PY_COLORS: '1'
|
||||||
ANSIBLE_FORCE_COLOR: '1'
|
ANSIBLE_FORCE_COLOR: '1'
|
||||||
MOLECULE_DISTRO: ${{ matrix.distro }}
|
MOLECULE_DISTRO: ${{ matrix.distro }}
|
||||||
working-directory: molecule
|
|
||||||
|
|
Loading…
Reference in a new issue