Skip to content

feat(some-kotest): Kotest Property Testing Integration #46

feat(some-kotest): Kotest Property Testing Integration

feat(some-kotest): Kotest Property Testing Integration #46

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
paths:
- zensical.toml
- docs/**
- .github/workflows/docs.yml
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout main branch
uses: actions/checkout@v6
- name: Setup Python 3.x
uses: actions/setup-python@v6
with:
python-version: 3.x
- name: Install Zensical dependency
run: pip install zensical
- name: Build documentation website
run: zensical build --clean
- name: Upload website artifacts
uses: actions/upload-pages-artifact@v5
with:
path: site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
steps:
- name: Deploy website
uses: actions/deploy-pages@v5
id: deployment