Skip to content

Require Python version 3.10 or higher #34

Require Python version 3.10 or higher

Require Python version 3.10 or higher #34

Workflow file for this run

name: Run Tests
on:
# allows running workflows manually
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up virtual environment
run: |
python -m pip install -U pip
python -m venv venv
source venv/bin/activate
- name: Install
run: |
python -m pip install .[test]
- name: Test
run: python -m pytest -ra tests