Skip to content

Configure agents when reconciling hosted cluster #263

Configure agents when reconciling hosted cluster

Configure agents when reconciling hosted cluster #263

Workflow file for this run

---
name: "CI"
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request:
branches: [main]
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
ansible-lint:
runs-on: ubuntu-latest
env:
ANSIBLE_LINT_NODEPS: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --locked --all-extras --group development
- name: Run ansible-lint
run: uv run ansible-lint