Skip to content

Merge pull request #13 from i-dot-ai/feature/add-copyright-notices #9

Merge pull request #13 from i-dot-ai/feature/add-copyright-notices

Merge pull request #13 from i-dot-ai/feature/add-copyright-notices #9

Workflow file for this run

name: Deploy docs
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Use Python from .python-version for consistency
- name: Read Python version
id: read_python_version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry
run: |
python -m pip install --upgrade poetry
poetry install
- name: Deploy docs
run: |
poetry run mkdocs gh-deploy