forked from jupyterhub/oauthenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 882 Bytes
/
test-docs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This is a GitHub workflow defining a set of jobs with a set of steps.
# ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
#
name: Test docs
on:
pull_request:
paths:
- "docs/**"
- "oauthenticator/**"
- "**/test-docs.yaml"
push:
paths:
- "docs/**"
- "oauthenticator/**"
- "**/test-docs.yaml"
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
tags: ["**"]
workflow_dispatch:
jobs:
linkcheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install deps
run: pip install -r docs/requirements.txt
- name: make linkcheck
run: |
cd docs
make linkcheck SPHINXOPTS='--color -W --keep-going'