Skip to content

docs(development): Tidy setup #7

docs(development): Tidy setup

docs(development): Tidy setup #7

Workflow file for this run

name: Build packages
on:
push:
branches: [master,debug]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9.19, 3.10.14, 3.11.9, 3.12.4]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --user pdm
pdm install
- name: Recreate documentation
run: pdm docs
- name: Build distributions
run: pdm build