Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
BalzaniEdoardo committed Feb 4, 2025
1 parent 15bb1ce commit d220a80
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,21 +81,25 @@ jobs:
- name: Check links
run: ./bash_scripts/prevent_absolute_links_to_docs.sh

- name: Install markdown-link-check
run: npm install -g markdown-link-check
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Check links in README.md
run: markdown-link-check README.md --config .markdown-link-check.json
- name: Install markdown-link-check
run: npm install -g markdown-link-check

- name: Check links in CONTRIBUTING.md
run: markdown-link-check CONTRIBUTING.md --config .markdown-link-check.json
- name: Check links in README.md
run: markdown-link-check README.md --config .markdown-link-check.json

check:
if: ${{ !github.event.pull_request.draft }}
needs:
- tox_tests
- prevent_docs_absolute_links
- tox_check
- check-links
runs-on: ubuntu-latest
steps:
- name: Decide whether all tests and notebooks succeeded
Expand Down

0 comments on commit d220a80

Please sign in to comment.