Skip to content

Commit b238ee7

Browse files
authored
Update test.yaml
1 parent 6b715fb commit b238ee7

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/test.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,27 @@ jobs:
3737
- name: Trying to strip out notebooks
3838
shell: bash -l {0}
3939
run: |
40-
nbdev_clean
40+
nbdev-clean
4141
git status -s # display the status to see which nbs need cleaning up
4242
if [[ `git status --porcelain -uno` ]]; then
4343
git status -uno
44-
echo -e "!!! Detected unstripped out notebooks\n!!!Remember to run nbdev_install_hooks"
44+
echo -e "!!! Detected unstripped out notebooks\n!!!Remember to run nbdev-install_hooks"
4545
echo -e "This error can also happen if you are using an older version of nbdev relative to what is in CI. Please try to upgrade nbdev with the command `pip install -U nbdev`"
4646
false
4747
fi
4848
49-
- name: Run nbdev_export
49+
- name: Run nbdev-export
5050
shell: bash -l {0}
5151
run: |
52-
nbdev_export
52+
nbdev-export
5353
if [[ `git status --porcelain -uno` ]]; then
54-
echo "::error::Notebooks and library are not in sync. Please run nbdev_export."
54+
echo "::error::Notebooks and library are not in sync. Please run nbdev-export."
5555
git status -uno
5656
git diff
5757
exit 1;
5858
fi
5959
60-
- name: Run nbdev_test
60+
- name: Run nbdev-test
6161
shell: bash -l {0}
6262
run: |
63-
nbdev_test
63+
nbdev-test

0 commit comments

Comments
 (0)