We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14c787c commit 06ff6ddCopy full SHA for 06ff6dd
.github/workflows/tests.yml
@@ -8,6 +8,12 @@ on:
8
workflow_dispatch:
9
10
jobs:
11
+ pre-commit:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: actions/setup-python@v3
16
+ - uses: pre-commit/action@v3.0.1
17
test:
18
runs-on: ${{ matrix.os }}
19
strategy:
Makefile
@@ -33,6 +33,11 @@ ci-proxy:
33
34
ci: ci-static ci-proxy
35
36
+pre-commit:
37
+ uv sync
38
+ uv pip install pre-commit
39
+ uv run pre-commit run --all-files
40
+
41
clean:
42
rm -rf ./dist
43
rm -rf ./mcp_scan/mcp_scan.egg-info
0 commit comments