Skip to content

Minor fixes

Minor fixes #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version:
- "3.11"
- "3.12"
name: test
runs-on: ${{ matrix.os }}
steps:
- name: checkout code
uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: run tests
run: poetry run pytest -vv
- name: pre-commit checks
uses: pre-commit/[email protected]