Organized setup instructions (#115)

* Organized setup instructions

* update tets

* link checker action

* raise error upon broken link

* fix links

* fix links

* delete duplicated paragraph
This commit is contained in:
Sebastian Raschka
2024-04-10 22:09:46 -04:00
committed by GitHub
parent 05718c6b94
commit e757091301
39 changed files with 75 additions and 49 deletions

24
.github/workflows/check-links.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Check Markdown Links
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Markdown Link Checker
run: npm install -g markdown-link-check
- name: Find Markdown Files and Check Links
run: |
find . -name '*.md' -exec markdown-link-check {} \;