blob: 8cff2e91fc13b6bd901d53da3e739eb3e2860002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# This is a basic workflow to help you get started with Actions
name: JSON
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Validatejson:
name: Validate json
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: lint constants
run: |
#!/bin/bash
echo "Linting contants..."
for filename in constants/*.json; do
if ! python -mjson.tool "$filename" &> /dev/null ; then
echo "Linting $filename failed:"
python -mjson.tool "$filename" > /dev/null
fi
done
echo "Linted."
- name: lint items
run: |
#!/bin/bash
echo "Linting contants..."
for filename in items/*.json; do
if ! python -mjson.tool "$filename" &> /dev/null ; then
echo "Linting $filename failed:"
python -mjson.tool "$filename" > /dev/null
fi
done
echo "Linted."
|