Skip to content

Commit 0a164d6

Browse files
author
Lennart Vater
committed
Fix pipeline
1 parent 3ebb690 commit 0a164d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
python-version: ${{ matrix.python-version }}
5959

6060
- name: Install the project
61-
run: uv sync${{ matrix.extra-string && " " + matrix.extra-string }} --dev
61+
run: uv sync${{ matrix.extra-string && ' ' + matrix.extra-string }} --dev
6262

6363
- name: Run tests with coverage
6464
run: |
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: Upload coverage files
7070
uses: actions/upload-artifact@v4
71-
if: ${{ matrix.python-version == "3.8" && matrix.extra-string == "--all-extras" }}
71+
if: ${{ matrix.python-version == '3.8' && matrix.extra-string == '--all-extras' }}
7272
with:
7373
name: coverage-files
7474
path: |

0 commit comments

Comments
 (0)