Skip to content

Updated docs workflow #22

Updated docs workflow

Updated docs workflow #22

Workflow file for this run

name: Test
on:
pull_request:
branches:
- master
- live
push:
branches:
- master
- live
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] #windows-latest
python-version: ['3.9', '3.10', '3.11', '3.12'] # '3.13-dev'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: Run tests
run: poetry run pytest