Skip to content

Commit 76a0a9a

Browse files
committed
Fix pwsh syntax
1 parent 12d55fd commit 76a0a9a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -168,20 +168,20 @@ jobs:
168168
- name: Build
169169
run: |
170170
# Install build dependencies manually as workaround for https://github.com/astral-sh/uv/issues/1516
171-
uv pip install \
172-
meson-python \
173-
"cysignals >=1.11.2, != 1.12.0" \
174-
"cython >=3.0, != 3.0.3, < 3.1.0" \
175-
"gmpy2 >=2.1.5" \
176-
memory_allocator \
177-
"numpy >=1.25" \
178-
jinja2 \
171+
uv pip install `
172+
meson-python `
173+
"cysignals >=1.11.2, != 1.12.0" `
174+
"cython >=3.0, != 3.0.3, < 3.1.0" `
175+
"gmpy2 >=2.1.5" `
176+
memory_allocator `
177+
"numpy >=1.25" `
178+
jinja2 `
179179
setuptools
180180
uv sync --frozen --inexact --no-build-isolation -v --no-editable --config-settings=builddir=builddir
181181
182182
- name: Test
183183
run: |
184-
uv run --frozen ./sage -t --all -p4 || true
184+
uv run --frozen ./sage -t --all -p4; exit 0
185185
186186
- name: Upload log
187187
uses: actions/upload-artifact@v4.5.0

0 commit comments

Comments
 (0)