Bump jupyter-client from 7.4.9 to 8.6.3 #613
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 URLs | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lychee-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Check for broken links | |
uses: lycheeverse/lychee-action@v1 | |
with: | |
# --exclude-loopback ensures we don't check localhost URLs | |
args: --exclude-loopback './**/*.md' './**/*.rst' |