Skip to content

Commit 0aab25c

Browse files
committed
fix(ci): add instrument-hooks build check
1 parent 791bed2 commit 0aab25c

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,27 @@ jobs:
2525
with:
2626
extra_args: --all-files
2727

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+
with:
39+
version: "0.5.20"
40+
- name: Set up Python 3.11
41+
uses: actions/setup-python@v5
42+
with:
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+
2849
tests:
2950
runs-on: ubuntu-latest
3051
strategy:

0 commit comments

Comments
 (0)