Issue #201: Add GitHub Actions CI workflow.

This commit is contained in:
Jeff Geerling 2020-11-03 09:51:34 -06:00
parent 8eaa30ca47
commit a20c887c6e

44
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,44 @@
---
name: CI
'on':
pull_request:
push:
branches:
- master
schedule:
- cron: "0 5 * * 0"
jobs:
test:
name: Molecule
runs-on: ubuntu-latest
strategy:
matrix:
MOLECULE_DISTRO:
- centos8
- centos7
- ubuntu2004
- debian10
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 molecule[docker] yamllint ansible-lint
- name: Run Molecule tests.
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}
working-directory: molecule