Skip to content

Don't run CI with pypy #22

Don't run CI with pypy

Don't run CI with pypy #22

Workflow file for this run

name: tests
on: [push]
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Prepare project for development
run: |
python -m pip install poetry
python -m poetry config virtualenvs.create false
python -m poetry install
- name: Run tests
run: |
poetry run pytest --cov . --cov-report term