We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791bed2 commit 0aab25cCopy full SHA for 0aab25c
1 file changed
.github/workflows/ci.yml
@@ -25,6 +25,27 @@ jobs:
25
with:
26
extra_args: --all-files
27
28
+ test-instrument-hooks:
29
+ strategy:
30
+ matrix:
31
+ os: [ubuntu-latest, windows-latest, macos-latest]
32
+ runs-on: ${{ matrix.os }}
33
+ steps:
34
+ - uses: actions/checkout@v4
35
+ with:
36
+ submodules: true
37
+ - uses: astral-sh/setup-uv@v4
38
39
+ version: "0.5.20"
40
+ - name: Set up Python 3.11
41
+ uses: actions/setup-python@v5
42
43
+ python-version: "3.11"
44
+ - name: Install dependencies
45
+ run: uv sync --all-extras --dev --locked --verbose
46
+ - name: Build package
47
+ run: PYTEST_CODSPEED_FORCE_EXTENSION_BUILD=1 uv pip install --force-reinstall .
48
+
49
tests:
50
runs-on: ubuntu-latest
51
strategy:
0 commit comments