25 lines
373 B
YAML
25 lines
373 B
YAML
name: pre-commit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
precommit:
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: install
|
|
run: |
|
|
pip install pre-commit
|
|
|
|
- name: run
|
|
run: pre-commit
|