zfs_dkms/.forgejo/workflows/lint.yml
Josh Lay a72ad8770b
Some checks failed
ci-lint / test (push) Failing after 5s
workflow/lint: ubuntu-22.04/node:22-bookworm
2025-10-19 07:39:03 -05:00

34 lines
737 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-22.04 # tag on runner maps to 'node:22-bookworm' image
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
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'