10000 Remove the 'continue-on-error' flag when linkcheck fails by Mariatta · Pull Request #727 · python/devguide · GitHub
[go: up one dir, main page]

Skip to content

Remove the 'continue-on-error' flag when linkcheck fails #727

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into Mariatta-patch-3
  • Loading branch information
ezio-melotti authored Jul 12, 2022
commit 38a961b422aa4fae15ee663d8ee710be94232b00
21 changes: 8 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: python3 -m pip install -U pip -r requirements.txt
- name: Build Docs
run: sphinx-build -n -W -q -b html -d _build/doctrees . _build/html
- name: Link Check
run: sphinx-build -b linkcheck -d _build/doctrees . _build/linkcheck
python-version: "3.10"
cache: pip
- name: Build docs
run: make html
- name: Check markup
run: make check
- name: Link check
run: make linkcheck
You are viewing a condensed version of this merge commit. You can view the full changes here.
0