Skip to content

Commit 2538b22

Browse files
authored
Fix DASL testing CI (#99)
1 parent 7ab7633 commit 2538b22

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,23 @@ jobs:
3838
path: dasl-testing
3939
ref: ${{ env.DASL_TESTING_REF }}
4040

41+
- name: Build libipld wheel.
42+
run: uv build --wheel
43+
env:
44+
UV_PYTHON: "3.13" # DASL testing requires Python 3.13+
45+
4146
- name: Run DASL Python harness.
4247
working-directory: dasl-testing/harnesses/python
4348
env:
4449
UV_PYTHON: "3.13" # DASL testing requires Python 3.13+
4550
run: |
46-
RESULT_JSON=$(uv run --with cbor2 python main.py libipld)
51+
LIBIPLD_WHEEL=$(ls ../../../dist/libipld-*.whl)
52+
RESULT_JSON=$(
53+
uv run \
54+
--with cbor2 \
55+
--with "$LIBIPLD_WHEEL" \
56+
python main.py libipld
57+
)
4758
4859
{
4960
echo "## DASL Results"

0 commit comments

Comments
 (0)