Run pytest tests in release action (#4702) #10
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: Update Website | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Python | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| with: | |
| python-version-file: "pyproject.toml" | |
| - name: Install uv ${{ vars.UV_VERSION }} | |
| uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2 | |
| with: | |
| enable-cache: true | |
| version: ${{ vars.UV_VERSION }} | |
| - name: Install dependencies to venv | |
| run: make _pyspec | |
| - name: Build docs | |
| run: make _copy_docs | |
| - name: Deploy | |
| run: uv run mkdocs gh-deploy --force |