mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-11-01 02:51:23 +00:00
40 lines
815 B
YAML
40 lines
815 B
YAML
|
---
|
||
|
name: CI
|
||
|
|
||
|
'on':
|
||
|
pull_request:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
schedule:
|
||
|
- cron: "30 6 * * 2"
|
||
|
|
||
|
jobs:
|
||
|
molecule:
|
||
|
name: Molecule
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
include:
|
||
|
- distro: centos7
|
||
|
playbook: converge.yml
|
||
|
steps:
|
||
|
- name: Check out the codebase.
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up Python 3.
|
||
|
uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: '3.x'
|
||
|
|
||
|
- name: Install test dependencies.
|
||
|
run: pip3 install ansible molecule[docker] docker
|
||
|
|
||
|
- name: Run Molecule tests.
|
||
|
run: molecule test
|
||
|
env:
|
||
|
PY_COLORS: '1'
|
||
|
ANSIBLE_FORCE_COLOR: '1'
|
||
|
MOLECULE_DISTRO: ${{ matrix.distro }}
|
||
|
MOLECULE_PLAYBOOK: ${{ matrix.playbook }}
|