mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-04 22:59:38 +01:00
12 lines
No EOL
392 B
YAML
12 lines
No EOL
392 B
YAML
name: Validate JSON
|
|
on: [push, pull_request]
|
|
jobs:
|
|
Validate-JSON:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Validate JSON
|
|
run: |
|
|
chmod +x ${{ github.workspace }}/tools/validate_json.py
|
|
python3 ${{ github.workspace }}/tools/validate_json.py ${{ github.workspace }}/web/atlas.json |