Skip to content

Merge branch 'feature/src-layout' into 'main' #3

Merge branch 'feature/src-layout' into 'main'

Merge branch 'feature/src-layout' into 'main' #3

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: py39
python-version: "3.9"
- name: py310
python-version: "3.10"
- name: py311
python-version: "3.11"
- name: py312
python-version: "3.12"
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Install package
run: pip install -e .
- name: Run tests
run: pytest -vv