Skip to content

Configure pre-commit hooks and GitHub Actions #12

Configure pre-commit hooks and GitHub Actions

Configure pre-commit hooks and GitHub Actions #12

Workflow file for this run

name: pre-commit
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
- uses: pre-commit/action@v3.0.1