This repository was archived by the owner on Nov 4, 2025. It is now read-only.
chore(deps): update github/codeql-action action to v4 (#56) #233
This file contains hidden or 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@v5 | |
| - name: Install Fonts | |
| run: | | |
| sudo apt --yes update | |
| sudo apt --yes install fonts-noto fonts-noto-cjk | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| 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 |