Skip to content

bump version to 0.8.1 #72

bump version to 0.8.1

bump version to 0.8.1 #72

Workflow file for this run

name: test
on:
push:
branches:
- main
paths:
- pyproject.toml
- 'src/**'
- 'tests/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
- run: pip install pipx
- run: pipx install poetry
- run: poetry install --with test --no-interaction
- run: poetry run pytest