Skip to content

ignore pages build files + tweak docs workflow #3

ignore pages build files + tweak docs workflow

ignore pages build files + tweak docs workflow #3

Workflow file for this run

name: validate
on:
push:
branches: [ v0.3 ]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install '.[test]'
- name: Run tests
run: |
pytest