Files
pda-fieldbus-profiles/.gitea/workflows/ci.yml
T
TomUvi 5eb0e289a1
Auto Tag / tag (push) Successful in 2s
CI / validate (push) Successful in 2s
Auto Tag / release (push) Has been skipped
ci: drop loader validation step, keep JSON syntax check only
The loader step shells out to go get github.com/pdat-cz/pda-fieldbus,
which doesn't resolve (canonical home is git.pda.cz). This repo has no
Go code; loader-level validation is documented as a local workflow in
the README via pda-fieldbus poll --dry-run.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-01 13:57:35 +02:00

21 lines
354 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: JSON syntax check
run: |
for f in profiles/*.json; do
echo "checking $f"
python3 -m json.tool "$f" > /dev/null
done