Skip to content

docs: fixed codecov link (#321) #5

docs: fixed codecov link (#321)

docs: fixed codecov link (#321) #5

Workflow file for this run

name: docs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# manual
workflow_dispatch:
env:
PRE_COMMIT_CACHE: ~/.cache/pre-commit
jobs:
tox-docs:
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
os: [ubuntu-latest]
env:
- TOXENV: "docs"
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Configure Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry==1.5.1 tox==4.11.3 tox-gh
- name: Cache pre-commit
uses: actions/cache@v4
with:
path: ${{ env.PRE_COMMIT_CACHE }}
key: ${{ matrix.os }}-${{ matrix.python-version }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run tox
run: |
tox
shell: bash
env: ${{ matrix.env }}
- name: Prepare docs artifact
if: always()
shell: bash
run: |
mkdir artifact
cp -a .tox/docs_out/ artifact/html_docs
- name: Upload docs artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: html_docs
path: ./artifact
- name: Deploy to gh pages
if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }}
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .tox/docs_out/
destination_dir: ./latest