Skip to content

Commit 752292b

Browse files
committed
pre-commit on GHA
1 parent c33c4b1 commit 752292b

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
merge_group:
7+
8+
jobs:
9+
quality:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out repository
13+
uses: actions/checkout@v5
14+
15+
- name: Prepare Python
16+
uses: actions/setup-python@v6
17+
with:
18+
python-version: "3.11"
19+
20+
- name: Install dependencies
21+
run: pip install pre-commit
22+
23+
- name: Run pre-commit hooks
24+
run: pre-commit run --all-files

0 commit comments

Comments
 (0)