-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
20 additions
and
49 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 |
---|---|---|
|
@@ -18,6 +18,16 @@ jobs: | |
python-version: "3.10" | ||
poetry-version: "1.8.2" | ||
|
||
- name: Check Version Number | ||
run: poetry run python3 -u "./scripts/build/check_release.py" | ||
|
||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/[email protected] | ||
with: | ||
fail: true | ||
args: --verbose --no-progress 'doc/**/*.md' 'README.md' | ||
|
||
- name: Run Unit Tests | ||
run: > | ||
poetry run pytest | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
name: Check Notebook Links | ||
name: Check Hyperlinks | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "main" | ||
pull_request: | ||
|
||
jobs: | ||
check_notebook_links: | ||
|
@@ -19,7 +17,14 @@ jobs: | |
python-version: "3.10" | ||
poetry-version: '1.8.2' | ||
|
||
- name: Run build ai-lab tests | ||
- name: Check Hyperlinks in Documentation | ||
id: lychee | ||
uses: lycheeverse/[email protected] | ||
with: | ||
fail: true | ||
args: --verbose --no-progress 'doc/**/*.md' 'README.md' | ||
|
||
- name: Check Hyperlinks in Jupyter Notebooks | ||
run: > | ||
poetry run pytest --check-links exasol/ds/sandbox/runtime/ansible/roles/jupyter/files/notebook/ | ||
This file was deleted.
Oops, something went wrong.