-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into docs/complex-python-package-builds-to-spanish
- Loading branch information
Showing
42 changed files
with
1,758 additions
and
889 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,57 +15,57 @@ jobs: | |
build-test-book: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.9' | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Upgrade pip | ||
run: | | ||
# install pip=>20.1 to use "pip cache dir" | ||
python3 -m pip install --upgrade pip | ||
- name: Get pip cache dir | ||
id: pip-cache | ||
run: echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Upgrade pip | ||
run: | | ||
# install pip=>20.1 to use "pip cache dir" | ||
python3 -m pip install --upgrade pip | ||
- name: Get pip cache dir | ||
id: pip-cache | ||
run: echo "::set-output name=dir::$(pip cache dir)" | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install dependencies | ||
run: python3 -m pip install nox | ||
- name: Install dependencies | ||
run: python3 -m pip install nox | ||
|
||
- name: Build book | ||
run: nox -s docs-test | ||
- name: Build book | ||
run: nox -s docs-test | ||
|
||
# Save html as artifact | ||
- name: Save book html as artifact for viewing | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: book-html | ||
path: | | ||
_build/html/ | ||
# Save html as artifact | ||
- name: Save book html as artifact for viewing | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: book-html | ||
path: | | ||
_build/html/ | ||
# Push the book's HTML to github-pages | ||
- name: Push to GitHub Pages | ||
# Only push if on main branch | ||
if: github.ref == 'refs/heads/main' | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./_build/html | ||
# Push the book's HTML to github-pages | ||
- name: Push to GitHub Pages | ||
# Only push if on main branch | ||
if: github.ref == 'refs/heads/main' | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./_build/html | ||
|
||
# Test for bad links and ensure alt tags for usability | ||
- name: Check HTML using htmlproofer | ||
uses: chabad360/htmlproofer@master | ||
with: | ||
directory: '_build/html' | ||
arguments: | | ||
--ignore-files "/.+\/_static\/.+/,/genindex.html/" | ||
--ignore-status-codes "404, 403, 429, 503" | ||
# Test for bad links and ensure alt tags for usability | ||
- name: Check HTML using htmlproofer | ||
uses: chabad360/htmlproofer@master | ||
with: | ||
directory: "_build/html" | ||
arguments: | | ||
--ignore-files "/.+\/_static\/.+/,/genindex.html/" | ||
--ignore-status-codes "404, 403, 429, 503" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.