Skip to content

Merge pull request #59 from Doist/thomas/release-3.0.0 #140

Merge pull request #59 from Doist/thomas/release-3.0.0

Merge pull request #59 from Doist/thomas/release-3.0.0 #140

Workflow file for this run

name: Tests
on:
- push
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version:
- 3.11
- 3.12
- 3.13
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: Test with tox
run: poetry run tox