Use identity instead of equality when possible (#10712) #2
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: Publish Documentation | |
on: | |
push: | |
branches: | |
- main | |
- docs-update | |
tags: | |
- '**' | |
env: | |
COLUMNS: 150 | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pdm-project/setup-pdm@v4 | |
with: | |
python-version: '3.11' | |
cache: true | |
- name: install | |
run: pdm install -G linting -G email | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files --verbose | |
env: | |
SKIP: no-commit-to-branch | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pdm-project/setup-pdm@v4 | |
with: | |
python-version: '3.11' | |
cache: true | |
- name: install deps | |
run: pdm install -G testing -G email | |
- run: pdm info && pdm list | |
- run: 'pdm run python -c "import pydantic.version; print(pydantic.version.version_info())"' | |
- run: make test | |
publish: | |
# Compare with the docs-build job in .github/workflows/ci.yml | |
needs: [lint, test] | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: checkout docs-site | |
uses: actions/checkout@v4 | |
with: | |
ref: docs-site | |
- name: checkout current branch | |
uses: actions/checkout@v4 | |
- uses: pdm-project/setup-pdm@v4 | |
with: | |
python-version: '3.10' | |
- name: install | |
run: | | |
pdm venv create --with-pip --force $PYTHON | |
pdm install -G docs | |
pdm run python -m pip install --extra-index-url https://pydantic:${PPPR_TOKEN}@pppr.pydantic.dev/simple/ mkdocs-material | |
env: | |
PPPR_TOKEN: ${{ secrets.PPPR_TOKEN }} | |
- run: pdm run python -c 'import docs.plugins.main' | |
# Adding local symlinks gets nice source locations like | |
# pydantic_core/core_schema.py | |
# instead of | |
# .venv/lib/python3.10/site-packages/pydantic_core/core_schema.py | |
- name: prepare shortcuts for extra modules | |
run: | | |
ln -s .venv/lib/python*/site-packages/pydantic_core pydantic_core | |
ln -s .venv/lib/python*/site-packages/pydantic_settings pydantic_settings | |
ln -s .venv/lib/python*/site-packages/pydantic_extra_types pydantic_extra_types | |
- name: Set git credentials | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
- run: pdm run mike deploy -b docs-site dev --push | |
if: "github.ref == 'refs/heads/main'" | |
- if: "github.ref == 'refs/heads/docs-update' || startsWith(github.ref, 'refs/tags/')" | |
id: check-version | |
uses: samuelcolvin/[email protected] | |
with: | |
version_file_path: 'pydantic/version.py' | |
skip_env_check: true | |
- run: pdm run mike deploy -b docs-site ${{ steps.check-version.outputs.VERSION_MAJOR_MINOR }} latest --update-aliases --push | |
if: "(github.ref == 'refs/heads/docs-update' || startsWith(github.ref, 'refs/tags/')) && !fromJSON(steps.check-version.outputs.IS_PRERELEASE)" | |
env: | |
PYDANTIC_VERSION: v${{ steps.check-version.outputs.VERSION }} |