From ca4b2461790ace4f4391379108133472e429ecf2 Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Tue, 26 May 2026 14:50:03 +0000 Subject: [PATCH] add smoke workflow --- .gitea/workflows/smoke.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/smoke.yml diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml new file mode 100644 index 0000000..b22cc43 --- /dev/null +++ b/.gitea/workflows/smoke.yml @@ -0,0 +1,25 @@ +name: Smoke test +on: + push: + branches: [main] + workflow_dispatch: + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - name: Show context + run: | + echo "Hello from Gitea Actions on $(hostname)" + echo "Runner OS: $RUNNER_OS" + uname -a + node --version || true + docker --version || true + + php-wp: + runs-on: php-wp + steps: + - name: Check WP-CLI / PHP + run: | + php --version + wp --info --allow-root || true