Files
System-Updater/.gitea/workflows/ansible-smoke.yml
pan 66f2de2627
Some checks failed
ansible-smoke / smoke (push) Has been cancelled
test workflow hinzugefügt
2026-02-11 22:54:30 +01:00

25 lines
486 B
YAML

name: ansible-smoke
on:
workflow_dispatch: {}
push:
branches: [ "main" ]
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ansible
run: |
python3 -m pip install --upgrade pip
pip install ansible
ansible --version
- name: Ping inventory (optional)
run: |
ansible -i inventory/lan.yml all -m ping
env:
ANSIBLE_HOST_KEY_CHECKING: "False"