We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d36ca08 commit b133965Copy full SHA for b133965
2 files changed
.github/workflows/check.yml
@@ -19,10 +19,5 @@ jobs:
19
version: "0.10.4"
20
enable-cache: true
21
22
- - name: Setup Python
23
- uses: 'actions/setup-python@v6'
24
- with:
25
- python-version-file: "pyproject.toml"
26
-
27
- name: Run checks
28
run: make check
.github/workflows/copilot-setup-steps.yml
@@ -25,9 +25,13 @@ jobs:
- name: Setup Python
- uses: actions/setup-python@v6
+ uses: 'actions/setup-python@v6'
29
with:
30
python-version-file: "pyproject.toml"
31
+ pip-install: "pre-commit"
32
33
- name: Install dependencies
34
run: uv sync --all-packages
35
+
36
+ - name: Configure precommit
37
+ run: pre-commit install
0 commit comments