Skip to content

chore(deps): update goreleaser/goreleaser-action action to v6 #3423

chore(deps): update goreleaser/goreleaser-action action to v6

chore(deps): update goreleaser/goreleaser-action action to v6 #3423

Workflow file for this run

name: JSON Schema Check
on:
push:
pull_request:
jobs:
json-schema-check:
runs-on: ubuntu-22.04
container: python:3.11-alpine3.16
steps:
- uses: actions/[email protected]
- name: Test
run: |
pip install jsonschema==4.14.0
for f in $(find config/ -name '*.json')
do
echo "Checking $f"
jsonschema -i $f config-schema.json
done