Skip to content

Commit 5595bde

Browse files
committed
ci: remove uv.lock from workflows to fix CI failure after ignore
1 parent d9c13c2 commit 5595bde

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
- "tests/**"
99
- "examples/**"
1010
- "pyproject.toml"
11-
- "uv.lock"
1211
- "justfile"
1312
- ".pre-commit-config.yaml"
1413
- ".github/workflows/ci.yml"
@@ -19,7 +18,6 @@ on:
1918
- "tests/**"
2019
- "examples/**"
2120
- "pyproject.toml"
22-
- "uv.lock"
2321
- "justfile"
2422
- ".pre-commit-config.yaml"
2523
- ".github/workflows/ci.yml"
@@ -46,7 +44,7 @@ jobs:
4644
enable-cache: true
4745

4846
- name: Install dependencies
49-
run: uv sync --locked --all-extras --dev
47+
run: uv sync --all-extras --dev
5048

5149
- name: Run linter and static analysis
5250
run: |

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
enable-cache: true
3232

3333
- name: Install dependencies
34-
run: uv sync --locked --all-extras --dev
34+
run: uv sync --all-extras --dev
3535

3636
- name: Setup Pages
3737
uses: actions/configure-pages@v5

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
enable-cache: true
2222

2323
- name: Install dependencies
24-
run: uv sync --locked --all-extras --dev
24+
run: uv sync --all-extras --dev
2525

2626
- name: Build sdist and wheel
2727
run: uv run build

0 commit comments

Comments
 (0)