Skip to content

Commit 0f654ee

Browse files
committed
fix(conda): remove unneeded quoting escapes from matrix filter
1 parent 6b22475 commit 0f654ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
build_type: pull-request
7171
script: ci/build_python.sh
72-
matrix_filter: map(select(.ARCH == \"amd64\")) | [max_by([.CUDA_VER | split(\".\") | map(tonumber), .PY_VER | split(\".\") | map(tonumber)])]
72+
matrix_filter: map(select(.ARCH == "amd64")) | [max_by([(.CUDA_VER|split(".")|map(tonumber)), (.PY_VER|split(".")|map(tonumber))])]
7373
conda-python-tests:
7474
needs: [conda-python-build, changed-files]
7575
secrets: inherit

0 commit comments

Comments
 (0)