Skip to content

Merge pull request #45 from SaridakisStamatisChristos/codex/add-tests… #6

Merge pull request #45 from SaridakisStamatisChristos/codex/add-tests…

Merge pull request #45 from SaridakisStamatisChristos/codex/add-tests… #6

Workflow file for this run

name: docs
on:
push:
branches: [ "main" ]
workflow_dispatch: {}
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install docs deps
run: |
python -m pip install -U pip
python -m pip install -e ".[dev]"
- name: Build docs
run: mkdocs build --strict
- name: Deploy to gh-pages/docs/
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
destination_dir: docs
keep_files: true