Skip to content

Commit

Permalink
Fixing indentation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
balajialg committed May 10, 2024
1 parent 1996ba3 commit 864dacc
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,15 @@ jobs:
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if [[ $file == *.ipynb ]]; then
if [ ! -f "${file}" ]; then
if [ ! -f "${file}" ]; then
echo "No such file: '${file}'"
exit 1
else
echo "Converting: '${file}'"
jupyter nbconvert --to notebook --execute --inplace "$file"
fi
jupyter nbconvert --to notebook --execute --inplace "$file"
fi
fi

done
done

- name: Check for errors
run: |
Expand Down

0 comments on commit 864dacc

Please sign in to comment.