Skip to content

chore(deps): Bump commitizen from 3.29.0 to 3.29.1 #97

chore(deps): Bump commitizen from 3.29.0 to 3.29.1

chore(deps): Bump commitizen from 3.29.0 to 3.29.1 #97

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
jobs:
pytest:
name: Pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["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-version }}
- name: Install Poetry
env:
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/resources/constraints.txt
run: |
pipx install poetry
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Run tests
run: |
poetry run pytest