Skip to content

Commit 27efac6

Browse files
committed
ci: add the step to compile native code for unit tests
1 parent e4e603d commit 27efac6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- "3.12"
6969
resolution:
7070
- highest
71-
- lowest-direct
71+
# - lowest-direct
7272
exclude:
7373
- os: macos-latest
7474
resolution: lowest-direct
@@ -102,5 +102,11 @@ jobs:
102102
UV_RESOLUTION: ${{ matrix.resolution }}
103103
run: make setup
104104

105+
- name: Compile native code for the unit tests
106+
run: |
107+
cd tests/test_native_library
108+
cmake -Bbuild .
109+
cmake --build build
110+
105111
- name: Run the test suite
106112
run: make test

0 commit comments

Comments
 (0)