Skip to content

Remove dependency locking and related pre-commit hook #93

Remove dependency locking and related pre-commit hook

Remove dependency locking and related pre-commit hook #93

Workflow file for this run

name: Python library
on:
push:
branches: [main]
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
pip-install: poetry
- name: Install dependencies
run: poetry install
- uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Check files
run: poetry run pre-commit run --all-files