Skip to content

Commit 8ae2875

Browse files
committed
fix: remove env context from job name in GitHub Actions
- Replace env.PRIMARY_PYTHON_VERSION with literal '3.13' in job name - Job-level properties cannot access env context, only step-level can - Fixes error: 'env' context not available in job name property
1 parent 20b01ed commit 8ae2875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
integration-test:
202202
runs-on: ubuntu-latest
203203
needs: [lint, type-check]
204-
name: Integration Tests on Python ${{ env.PRIMARY_PYTHON_VERSION }} and ubuntu-latest
204+
name: Integration Tests on Python 3.13 and ubuntu-latest
205205
steps:
206206
- name: Checkout repository
207207
uses: actions/checkout@v4

0 commit comments

Comments
 (0)