Skip to content

Feat/update pre commit #3

Feat/update pre commit

Feat/update pre commit #3

Workflow file for this run

name: Pre Commit
on: [pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run pre-commit hooks
uses: pre-commit/action@v3.0.0