Skip to content

Merge pull request #1 from fpcorso/feature/python-14-support #43

Merge pull request #1 from fpcorso/feature/python-14-support

Merge pull request #1 from fpcorso/feature/python-14-support #43

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- main
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14' ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with test
- name: Run tests
run: poetry run pytest