Skip to content

Bump pydantic from 2.7.3 to 2.7.4 (#239) #708

Bump pydantic from 2.7.3 to 2.7.4 (#239)

Bump pydantic from 2.7.3 to 2.7.4 (#239) #708

Workflow file for this run

name: Deploy Docs
on:
- push
env:
PYTHON_VERSION: 3.9
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Doc dependencies
run: pip install mkdocs-material
- name: Build Docs
run: mkdocs build
- name: Deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
run: mkdocs gh-deploy --force