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 4fd2321 commit 00bfad7Copy full SHA for 00bfad7
.github/workflows/ci.yml
@@ -15,7 +15,7 @@ jobs:
15
build:
16
strategy:
17
matrix:
18
- python-version: ["3.10", "3.11", "3.12", "3.13"]
+ python-version: ['3.10', '3.11', '3.12', '3.13']
19
uv-resolution: [highest, lowest-direct]
20
platform: [ubuntu-latest, windows-latest]
21
@@ -28,7 +28,7 @@ jobs:
28
uses: astral-sh/setup-uv@v7
29
with:
30
enable-cache: true
31
- cache-dependency-glob: "**/pyproject.toml"
+ cache-dependency-glob: '**/pyproject.toml'
32
33
- name: Lint
34
run: |
@@ -70,7 +70,7 @@ jobs:
70
completion-ci:
71
needs: build
72
runs-on: ubuntu-latest
73
- if: always() # Run even if one matrix job fails
+ if: always() # Run even if one matrix job fails
74
steps:
75
- name: Check matrix job status
76
run: |-
0 commit comments