Skip to content

Commit e01bdc4

Browse files
committed
Fixes from review
1 parent 4a18b18 commit e01bdc4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/python-environment/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
with:
3939
python-version: ${{ inputs.python-version }}
4040

41-
- name: Ensure curl
41+
- name: Ensure wget
4242
shell: bash
4343
run: sudo apt update && sudo apt install -y wget
4444

@@ -74,6 +74,7 @@ runs:
7474
working-directory: ${{ inputs.working-directory }}
7575
shell: bash
7676
run: |
77+
EXTRAS=$(echo "${{ inputs.extras }}" | tr -d ' ')
7778
if [[ -n "$EXTRAS" ]]; then
7879
poetry install --extras "$EXTRAS"
7980
else

.github/workflows/slow-checks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ jobs:
6060
- int-linux-x64-4core-ubuntu24.04-1
6161
- int-linux-x64-2core-ubuntu24.04-1
6262
python-version:
63-
- "3.9"
6463
- "3.10"
6564
- "3.11"
6665
- "3.12"
@@ -73,7 +72,7 @@ jobs:
7372
- name: SCM Checkout
7473
uses: actions/checkout@v4
7574

76-
- name: Setup Python & Poetry Environment
75+
- name: Set up Python & Poetry Environment
7776
uses: ./.github/actions/python-environment
7877
with:
7978
python-version: "${{ matrix.python-version }}"

0 commit comments

Comments
 (0)