-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from LabForComputationalVision/small_fix
Small documentation-related fixes
- Loading branch information
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,12 +123,25 @@ jobs: | |
for file in docs/tutorials/*/*nblink; do let "n_nblink+=1"; done; | ||
n_ipynb=0; for file in examples/*ipynb; do let "n_ipynb+=1"; done; | ||
if [[ $n_nblink != $n_ipynb ]]; then exit 1; fi; | ||
check_urls: | ||
runs-on: ubuntu-latest | ||
name: Check all urls are valid | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: urlstechie/[email protected] | ||
with: | ||
file_types: .md,.py,.rst,.ipynb | ||
print_all: false | ||
timeout: 5 | ||
retry_count: 3 | ||
|
||
check: | ||
if: always() | ||
needs: | ||
- notebooks | ||
- tests | ||
- all_tutorials_in_docs | ||
- no_extra_nblinks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Decide whether all tests and notebooks succeeded | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters