Skip to content

Add GitHub Actions

Add GitHub Actions #22

Workflow file for this run

name: pre-commit checks
on:
pull_request:
branches:
- main
jobs:
precommit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.15]
steps:
- uses: actions/checkout@v4.1.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Running precommit checks
run: |
pip install pre-commit
pre-commit install-hooks
pre-commit run --all-files --show-diff-on-failure