ci(pre-commit): update pre-commit hooks #209
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
name: Documentation | |
on: | |
push: | |
permissions: | |
contents: write | |
env: | |
PYTHON_VERSION: 3.x | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Fonts | |
run: | | |
sudo apt --yes update | |
sudo apt --yes install fonts-noto fonts-noto-cjk | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: pip | |
cache-dependency-path: docs/requirements.txt | |
- name: Install Python Dependencies | |
run: pip install --requirement=docs/requirements.txt | |
- name: Setup Tex Live | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
packages: scheme-full | |
- name: Build | |
run: make docs-build | |
- if: github.ref == 'refs/heads/main' | |
name: Deploy to GitHub Pages | |
run: make docs-gh-deploy |