mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-04 22:59:38 +01:00
17 lines
No EOL
347 B
YAML
17 lines
No EOL
347 B
YAML
name: Validate JSON
|
|
on:
|
|
push:
|
|
paths:
|
|
- web/atlas.json
|
|
pull_request:
|
|
paths:
|
|
- web/atlas.json
|
|
jobs:
|
|
validate:
|
|
name: Validate JSON
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Validate JSON
|
|
run: python3 tools/ci/validate_json.py web/atlas.json |