Skip to content

Ansible lint pipeline and molecule tests #14

Ansible lint pipeline and molecule tests

Ansible lint pipeline and molecule tests #14

Workflow file for this run

---
name: molecule
on: # yamllint disable-line rule:truthy
push:
pull_request:
jobs:
molecule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: pip3 install -r .dev_requirements.txt
- name: install Ansbile dependencies
run: ansible-galaxy install git+file://$(pwd)
- name: Test playbook
run: molecule test
env:
PY_COLORS: '1'