We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bcadc commit 490357cCopy full SHA for 490357c
.github/workflows/test.yml
@@ -38,12 +38,21 @@ jobs:
38
path: dasl-testing
39
ref: ${{ env.DASL_TESTING_REF }}
40
41
+ - name: Build libipld wheel.
42
+ run: uv build --wheel
43
+
44
- name: Run DASL Python harness.
45
working-directory: dasl-testing/harnesses/python
46
env:
47
UV_PYTHON: "3.13" # DASL testing requires Python 3.13+
48
run: |
- 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
+ )
56
57
{
58
echo "## DASL Results"
0 commit comments