Skip to content

Dropping support for Python 3.8 from CI #4

Dropping support for Python 3.8 from CI

Dropping support for Python 3.8 from CI #4

Workflow file for this run

name: unit tests
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Update package index
run: sudo apt-get update
- name: Install PIP Packages
run: |
pip install -e .[dev]
- name: Run tests
run: pytest test/
env:
PYTHONHASHSEED: 0