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 7ab7633 commit 2538b22Copy full SHA for 2538b22
.github/workflows/test.yml
@@ -38,12 +38,23 @@ jobs:
38
path: dasl-testing
39
ref: ${{ env.DASL_TESTING_REF }}
40
41
+ - name: Build libipld wheel.
42
+ run: uv build --wheel
43
+ env:
44
+ UV_PYTHON: "3.13" # DASL testing requires Python 3.13+
45
+
46
- name: Run DASL Python harness.
47
working-directory: dasl-testing/harnesses/python
48
env:
49
UV_PYTHON: "3.13" # DASL testing requires Python 3.13+
50
run: |
- 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
+ )
58
59
{
60
echo "## DASL Results"
0 commit comments