We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3630f1 commit 8c57165Copy full SHA for 8c57165
.github/workflows/code-quality.yaml
@@ -57,8 +57,6 @@ jobs:
57
ret_code=0
58
echo "-- Checking a regular '*.json' files"
59
for f in **/*.json; do echo "Checking: '${f}"; echo -n " > "; cat $f | json_verify || ret_code=1; done
60
- echo "-- Checking a 'Pipfile.lock' files"
61
- for f in **/Pipfile.lock; do echo "Checking: '${f}"; echo -n " > "; cat $f | json_verify || ret_code=1; done
62
echo "-- Checking a '*.ipynb' Jupyter notebook files"
63
for f in **/*.ipynb; do echo "Checking: '${f}"; echo -n " > "; cat $f | json_verify || ret_code=1; done
64
if test "${ret_code}" -ne 0; then
0 commit comments