File tree Expand file tree Collapse file tree 3 files changed +28
-3
lines changed Expand file tree Collapse file tree 3 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Check JSON Validity
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ validate-json :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout repository
14+ uses : actions/checkout@v4
15+
16+ - name : Setup Python3
17+ uses : actions/setup-python@v5
18+
19+ - name : Validate JSON files
20+ run : |
21+ set -e
22+ for file in $(find configs/ -type f -name "*.json"); do
23+ echo "Checking $file"
24+ python3 -m json.tool "$file" > /dev/null
25+ done
Original file line number Diff line number Diff line change 55 push :
66 branches :
77 - master
8- tags : ' *'
8+ tags : [ '*']
99
1010jobs :
1111 test :
Original file line number Diff line number Diff line change 226226 "library" :" Chemical"
227227 },
228228 {
229- "library" :" Chemical"
229+ "library" :" Chemical" ,
230230 "libraryVersion" :" master" ,
231- "libraryVersionNameForTests" :" master" ,
231+ "libraryVersionNameForTests" :" master"
232232 },
233233 {
234234 "library" :" ClaRa" ,
You can’t perform that action at this time.
0 commit comments