Skip to content

bump version to 0.7.1 #53

bump version to 0.7.1

bump version to 0.7.1 #53

Workflow file for this run

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