docs: link remaining file headings to their paths #21
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: Lint | |
| "on": | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| jobs: | |
| ansible-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install ansible-lint | |
| run: pip install ansible-lint | |
| - name: Run ansible-lint | |
| run: ansible-lint | |
| molecule: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install molecule and docker driver | |
| run: pip install molecule molecule-plugins[docker] ansible-core | |
| - name: Run molecule test (kube_tools role) | |
| run: molecule test | |
| working-directory: ansible/playbooks/roles/kube_tools |