From 66f2de2627f32258f0e0637ee54e84471457c83f Mon Sep 17 00:00:00 2001 From: pan Date: Wed, 11 Feb 2026 22:54:30 +0100 Subject: [PATCH] =?UTF-8?q?test=20workflow=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ansible-smoke.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/ansible-smoke.yml diff --git a/.gitea/workflows/ansible-smoke.yml b/.gitea/workflows/ansible-smoke.yml new file mode 100644 index 0000000..f686087 --- /dev/null +++ b/.gitea/workflows/ansible-smoke.yml @@ -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"