Skip to content

Bumped pre-commit hook versions #5

Bumped pre-commit hook versions

Bumped pre-commit hook versions #5

Workflow file for this run

name: Run Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
#env:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.13.1"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install pipx
run: |
sudo apt install pipx
pipx ensurepath
- name: Install poetry
run: pipx install poetry
- name: Install project dependencies
run: poetry install
- name: Run tests
run: poetry run pytest --verbose