zfs_dkms/.forgejo/workflows/lint.yml
Josh Lay 7a4a9aa870
Some checks failed
ci-lint / test (push) Failing after 32s
workflow/lint: ubuntu-latest/node:25-trixie, -comments
2025-10-19 07:34:57 -05:00

35 lines
794 B
YAML

name: ci-lint
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches:
- master
schedule:
- cron: "20 4 * * 0"
jobs:
test:
runs-on: ubuntu-latest # tag on runner maps to 'node:25-trixie' image
steps:
- uses: actions/checkout@v5 # v5 needs nodejs 24+
- uses: actions/setup-python@v6
with:
python-version: '3.13.9'
cache: 'pip'
- name: ansible/collections
run: |
pip install ansible-core ansible-lint
ansible-galaxy collection install -r meta/requirements.yml
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
- name: ansible-lint
run: |
ansible-lint
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'