Issue #202: Separate linting into separate job and run in correct folder.

This commit is contained in:
Jeff Geerling 2020-11-03 09:58:34 -06:00
parent a20c887c6e
commit d4aeccde26

View file

@ -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