8000 CI: Fix CodeQL and Release jobs · crate/crate-python@c129f6a · GitHub
[go: up one dir, main page]

Skip to content

Commit c129f6a

Browse files
committed
CI: Fix CodeQL and Release jobs
1 parent 48ae120 commit c129f6a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828

2929
strategy:
3030
fail-fast: false
31-
language: [ python ]
31+
matrix:
32+
language: [ python ]
3233

3334
steps:
3435
- name: Checkout
@@ -58,7 +59,7 @@ jobs:
5859

5960
- name: Install project
6061
run: |
61-
uv pip install --editable=.[test]
62+
uv pip install --system '.[test]'
6263
6364
- name: Perform CodeQL Analysis
6465
uses: github/codeql-action/analyze@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Build package
2525
run: |
26-
uv pip install build twine wheel
26+
uv pip install --system build twine wheel
2727
python -m build
2828
twine check dist/*
2929

0 commit comments

Comments
 (0)
0