Skip to content

Commit 8c57165

Browse files
committed
Removed code quality check for Pipfile.lock files
1 parent a3630f1 commit 8c57165

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.github/workflows/code-quality.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ jobs:
5757
ret_code=0
5858
echo "-- Checking a regular '*.json' files"
5959
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
6260
echo "-- Checking a '*.ipynb' Jupyter notebook files"
6361
for f in **/*.ipynb; do echo "Checking: '${f}"; echo -n " > "; cat $f | json_verify || ret_code=1; done
6462
if test "${ret_code}" -ne 0; then

0 commit comments

Comments
 (0)