Skip to content

chore: update pre-commit hooks #117

chore: update pre-commit hooks

chore: update pre-commit hooks #117

Workflow file for this run

name: test
on: [pull_request, push]
jobs:
main:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: |
pip install pipx
pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- run: poetry install --sync
- run: poetry run pytest --cov-report xml
- uses: codecov/codecov-action@v3