add smoke workflow
All checks were successful
Smoke test / php-wp (push) Successful in 28s
Smoke test / hello (push) Successful in 50s

This commit is contained in:
gitea-admin 2026-05-26 14:50:03 +00:00
parent 1a7415bd56
commit ca4b246179

View File

@ -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