actions-test/.gitea/workflows/smoke.yml
gitea-admin ca4b246179
All checks were successful
Smoke test / php-wp (push) Successful in 28s
Smoke test / hello (push) Successful in 50s
add smoke workflow
2026-05-26 14:50:03 +00:00

26 lines
505 B
YAML

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