Skip to content

Commit c044c16

Browse files
chore: add github workflows for linkcheck
1 parent 8405cf7 commit c044c16

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/pre-checks.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This workflow will install Python dependencies and check for broken links
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Manual Pre Checks
5+
6+
on:
7+
push:
8+
branches:
9+
- "*"
10+
pull_request:
11+
branches:
12+
- main
13+
# Allows you to run this workflow manually from the Actions tab
14+
workflow_dispatch:
15+
16+
jobs:
17+
linkcheck:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: link-check
22+
run: |
23+
pip install -r requirements.txt
24+
make linkcheck
25+

0 commit comments

Comments
 (0)