christiangoeschel c1eb61d425
Some checks failed
Post PR Merge Action / integrate (push) Failing after 6s
feat: Add dev tools and helper scripts
2025-02-10 17:08:33 -05:00

17 lines
295 B
YAML

name: pre-commit linter
runs:
using: "composite"
steps:
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install pre-commit
shell: bash
run: |
pip install pre-commit
- name: Run linter
run: pre-commit run --all-files