Skip to content

feat: bump beadwork to 0.12.3 with sigma/tui patches #32

feat: bump beadwork to 0.12.3 with sigma/tui patches

feat: bump beadwork to 0.12.3 with sigma/tui patches #32

Workflow file for this run

name: Deploy docs to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install with dev dependencies
run: pip install docs/[dev]
- name: Run tests
run: pytest docs/tests/ -v
build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install docs package
run: pip install --quiet docs/
- name: Generate documentation
run: python -m toolbox_docs
- uses: actions/upload-pages-artifact@v4
with:
path: docs/_site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4