Paul Brinkmeier ad6de45a32
Some checks failed
Check / Lint Ansible Files (push) Failing after 1m54s
Update nixpkgs
2026-05-17 20:31:54 +02:00

17 lines
583 B
YAML

name: Check
"on": [push]
jobs:
"Lint Ansible Files":
runs-on: node-22-bookworm
steps:
- run: apt-get update
- run: apt-get upgrade -y
- run: apt-get install -y python3 python3-pip python3-venv
- run: python3 --version
- name: Check out repo
uses: actions/checkout@v3
- run: python3 -m venv venv
- run: venv/bin/pip --disable-pip-version-check install ansible-core==2.20.5 ansible-lint==25.8.2
- run: venv/bin/ansible-lint -c .ansible-lint ansible
# TODO: Reimplement ansible-play --check step from old drone config