test workflow hinzugefügt
Some checks failed
ansible-smoke / smoke (push) Has been cancelled

This commit is contained in:
pan
2026-02-11 22:54:30 +01:00
parent 752a9d858d
commit 66f2de2627

View File

@@ -0,0 +1,24 @@
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"