Skip to content

Commit de405c0

Browse files
install uv in make and pylint
1 parent a811680 commit de405c0

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/e2e-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install uv
2727
run: |
2828
curl -LsSf https://astral.sh/uv/install.sh | sh
29-
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
29+
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
3030
3131
- name: Build package
3232
run: |

.github/workflows/make.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,8 @@ jobs:
2323
with:
2424
ruby-version: 3.3
2525
- run: gem install xcop
26+
- name: Install uv
27+
run: |
28+
curl -LsSf https://astral.sh/uv/install.sh | sh
29+
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
2630
- run: make

.github/workflows/pylint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,9 @@ jobs:
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.11
22+
- name: Install uv
23+
run: |
24+
curl -LsSf https://astral.sh/uv/install.sh | sh
25+
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
2226
- run: make requirements
2327
- run: make pylint

0 commit comments

Comments
 (0)