CI #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: CI | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| molecule: | |
| name: Molecule | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: Install python | |
| run: sudo apt update && sudo apt install -y python3 python3-pip python3-setuptools | |
| - name: Install Ansible | |
| run: sudo pip3 install dnspython ansible==8.4.0 | |
| - name: Create ansible.cfg with correct roles_path | |
| run: sudo printf '[defaults]\nhost_key_checking = False\nroles_path=../' > ansible.cfg | |
| - name: Basic role syntax check | |
| run: sudo ansible-playbook tests/test.yml -i tests/inventory --syntax-check | |
| - name: Basic role check | |
| run: sudo ansible-playbook tests/test.yml -i tests/inventory |