Skip to content

docs: link remaining file headings to their paths #21

docs: link remaining file headings to their paths

docs: link remaining file headings to their paths #21

Workflow file for this run

---
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