Skip to content

feat: ephemeral timers with auto-cleanup and optional naming #19

feat: ephemeral timers with auto-cleanup and optional naming

feat: ephemeral timers with auto-cleanup and optional naming #19

Workflow file for this run

name: Docs
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install -e ".[docs]"
- run: mkdocs build --strict
- if: github.event_name == 'push'
uses: actions/upload-pages-artifact@v3
with:
path: site/
deploy:
if: github.event_name == 'push'
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- id: deploy
uses: actions/deploy-pages@v4