docs: fix link rot.
This commit is contained in:
parent
e3324e1456
commit
52842ee524
8 changed files with 38 additions and 13 deletions
16
.github/workflows/main.yaml
vendored
16
.github/workflows/main.yaml
vendored
|
|
@ -69,8 +69,6 @@ jobs:
|
|||
git fetch --tags https://github.com/amaranth-lang/amaranth.git
|
||||
- name: Set up PDM
|
||||
uses: pdm-project/setup-pdm@v4
|
||||
with:
|
||||
python-version: '3.12'
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pdm install --dev
|
||||
|
|
@ -83,6 +81,20 @@ jobs:
|
|||
name: docs
|
||||
path: docs/_build
|
||||
|
||||
check-links:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out source code
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up PDM
|
||||
uses: pdm-project/setup-pdm@v4
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pdm install --dev
|
||||
- name: Check links in documentation
|
||||
run: |
|
||||
pdm run document-linkcheck
|
||||
|
||||
required: # group all required workflows into one to avoid reconfiguring this in Actions settings
|
||||
needs:
|
||||
- test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue