Skip to content

Commit 490357c

Browse files
committed
fix DASL testing
1 parent 34bcadc commit 490357c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/test.yml

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

41+
- name: Build libipld wheel.
42+
run: uv build --wheel
43+
4144
- name: Run DASL Python harness.
4245
working-directory: dasl-testing/harnesses/python
4346
env:
4447
UV_PYTHON: "3.13" # DASL testing requires Python 3.13+
4548
run: |
46-
RESULT_JSON=$(uv run --with cbor2 python main.py libipld)
49+
LIBIPLD_WHEEL=$(ls ../../../dist/libipld-*.whl)
50+
RESULT_JSON=$(
51+
uv run \
52+
--with cbor2 \
53+
--with "$LIBIPLD_WHEEL" \
54+
python main.py libipld
55+
)
4756
4857
{
4958
echo "## DASL Results"

0 commit comments

Comments
 (0)