#342 Updated the jupysql dependency #234
Workflow file for this run
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
name: Check Hyperlinks | |
on: | |
pull_request: | |
jobs: | |
check-links: | |
name: Find Broken Links in Documentation and Jupyter Notebooks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/[email protected] | |
with: | |
python-version: "3.10" | |
poetry-version: '1.8.2' | |
- 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 --check-links-ignore "https://www.transtats.bts.gov/.*" exasol/ds/sandbox/runtime/ansible/roles/jupyter/files/notebook/ |