Skip to content

- bumping version for release; #11

- bumping version for release;

- bumping version for release; #11

Workflow file for this run

name: tests
on:
push:
paths:
- src/**
- test/**
pull_request:
workflow_dispatch:
jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-13 ]
python: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- name: install dependencies
run: |
python3 -m pip install .
python3 -m pip install pytest-asyncio
- name: run tests
run: |
python3 -m pytest