diff --git a/.github/workflows/code-quality.yaml b/.github/workflows/code-quality.yaml index e1008aec2..49f6cffa0 100644 --- a/.github/workflows/code-quality.yaml +++ b/.github/workflows/code-quality.yaml @@ -57,8 +57,6 @@ jobs: ret_code=0 echo "-- Checking a regular '*.json' files" for f in **/*.json; do echo "Checking: '${f}"; echo -n " > "; cat $f | json_verify || ret_code=1; done - echo "-- Checking a 'Pipfile.lock' files" - for f in **/Pipfile.lock; do echo "Checking: '${f}"; echo -n " > "; cat $f | json_verify || ret_code=1; done echo "-- Checking a '*.ipynb' Jupyter notebook files" for f in **/*.ipynb; do echo "Checking: '${f}"; echo -n " > "; cat $f | json_verify || ret_code=1; done if test "${ret_code}" -ne 0; then