Skip to content

Fix integration_tests.yml: pull from docker.io, robust teardown #17

Fix integration_tests.yml: pull from docker.io, robust teardown

Fix integration_tests.yml: pull from docker.io, robust teardown #17

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: "pip"
- name: Install package and doc dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[docs]
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force