Skip to content

Bump matplotlib from 3.10.7 to 3.10.8 #313

Bump matplotlib from 3.10.7 to 3.10.8

Bump matplotlib from 3.10.7 to 3.10.8 #313

Workflow file for this run

name: Markdown Link Validator
on:
pull_request:
push:
branches: [ main, master ]
jobs:
linkChecker:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Check links with lychee
# See https://github.com/lycheeverse/lychee-action
uses: lycheeverse/lychee-action@v2
with:
args: >-
--verbose
--no-progress
--max-concurrency 20
--exclude-path "docs/get_started/legacy_licenses/"
--exclude-link-local
--exclude "https://doi.org/"
--exclude "https://pubs.aip.org"
--exclude "https://www.gnu.org"
--exclude "https://fsf.org"
--exclude "http://www.k-wave.org"
"**/*.md" "**/*.rst"
fail: true