We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c33c4b1 commit 752292bCopy full SHA for 752292b
1 file changed
.github/workflows/ci.yml
@@ -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