Files
lazy_reboot/.gitea/workflows/ansible-test.yml
Chris Hammer f21605ae0a
All checks were successful
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-fedora) (push) Successful in 8s
Test actions cron; 1min intervals
2025-08-19 01:09:52 -04:00

38 lines
822 B
YAML

name: Ansible Code Pipeline
run-name: ${{ gitea.actor }} is running Ansible Code Pipeline
on:
schedule:
- cron: '*/1 * * * *'
push:
branches:
- main
jobs:
Ansible-Development-Pipeline:
strategy:
matrix:
os: [ ansible-dev-fedora ]
runs-on: ${{ matrix.os }}
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Ansible Environment Verify
run: |
whoami
. ./.ci.env
env
git log -1
ansible --version
ansible-lint --version
- name: Install Ansible Galaxy Dependencies
run: |
ansible-galaxy install -r roles/requirements.yml
- name: Run Ansible-Lint
run: |
. ./.ci.env
ansible-lint -v --offline $ANSIBLE_LINT_EXCLUSION