Skip to content

ci: add matrix for testing in different Python versions #33

ci: add matrix for testing in different Python versions

ci: add matrix for testing in different Python versions #33

Workflow file for this run

on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Run existing tests
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
steps:
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
- name: Install sophys-common
run: pip install git+https://github.com/cnpem/sophys-common.git
- name: Install package
run: pip install ".[all]"
- name: Run pytest
run: pytest -vvv