5eb0e289a1
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>
21 lines
354 B
YAML
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
|