21 lines
435 B
YAML
21 lines
435 B
YAML
name: pre-commit
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
pre-commit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Install pre-commit
|
|
run: pip install pre-commit
|
|
- name: Run pre-commit
|
|
run: pre-commit run --all-files |