Demo repository for testing Molecule and GitHub actions to do Ansible testing
├── apache.yml # A playbook we test
├── .github # GitHub actions main directory
│ └── workflows
│ └── ci.yml # CI pipeline which does Molecule testing
├── LICENSE
├── molecule # Molecule main directory
│ └── default # Test scenario default directory
│ ├── converge.yml # How you get Molecule to run a playbook
│ ├── molecule.yml # Molecule main config
│ └── verify.yml # Unit tests
└── README.md