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 3ebb690 commit 0a164d6Copy full SHA for 0a164d6
.github/workflows/main.yml
@@ -58,7 +58,7 @@ jobs:
58
python-version: ${{ matrix.python-version }}
59
60
- name: Install the project
61
- run: uv sync${{ matrix.extra-string && " " + matrix.extra-string }} --dev
+ run: uv sync${{ matrix.extra-string && ' ' + matrix.extra-string }} --dev
62
63
- name: Run tests with coverage
64
run: |
@@ -68,7 +68,7 @@ jobs:
68
69
- name: Upload coverage files
70
uses: actions/upload-artifact@v4
71
- if: ${{ matrix.python-version == "3.8" && matrix.extra-string == "--all-extras" }}
+ if: ${{ matrix.python-version == '3.8' && matrix.extra-string == '--all-extras' }}
72
with:
73
name: coverage-files
74
path: |
0 commit comments