Files
image-deploy/.gitea/workflows/validate.yml
T
dev 64a9e90138
validate / validate (pull_request) Successful in 5s
ci: add validate workflow to enable Hub review fan-out
2026-08-16 06:28:26 +00:00

19 lines
468 B
YAML

name: validate
on:
push:
branches: [main]
pull_request:
jobs:
validate:
runs-on: fritzlab
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: check action.yaml exists and has required fields
run: |
set -euo pipefail
test -f action.yaml || { echo "FATAL: action.yaml missing"; exit 1; }
grep -q "^name:" action.yaml
grep -q "^runs:" action.yaml
echo "action.yaml OK"