We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8405cf7 commit c044c16Copy full SHA for c044c16
.github/workflows/pre-checks.yml
@@ -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
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