Skip to content

Commit 4b497c0

Browse files
[STYLE] Apply changes from review (- WIP PR #328 -)
Changes in file .github/workflows/CI-BUILD.yml: * cleaned up a bit
1 parent daeffe3 commit 4b497c0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/CI-BUILD.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions: {}
2020

2121
env:
2222
ENVIRONMENT: ${{ (github.ref == 'refs/heads/stable' || startsWith(github.ref, 'refs/tags/v')) && 'Deployment' || (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/feature') || startsWith(github.ref, 'refs/heads/patch-') || startsWith(github.ref, 'refs/tags/v')) && 'Testing' || 'Experimenting' }}
23-
# Define Python versions at the top level
23+
# Define Python versions at the top level -- Expected format: X.Y (e.g., 3.13)
2424
PYTHON_DEFAULT: "${{ vars.PYTHON_DEFAULT }}"
2525
PYTHON_OLD_MIN: "${{ vars.PYTHON_OLD_MIN }}" # For Oldest Python versions
2626
PYTHON_EXPERIMENTAL: "${{ vars.PYTHON_EXPERIMENTAL }}" # For future Python versions
@@ -42,7 +42,6 @@ jobs:
4242
shell: bash
4343
env:
4444
LANG: "en_US.UTF-8"
45-
PYTHON_DEFAULT: "${{ vars.PYTHON_DEFAULT }}"
4645
outputs:
4746
build_status: ${{ steps.build.outcome }}
4847
steps:
@@ -132,7 +131,7 @@ jobs:
132131
- name: Summerize Building
133132
id: sumerize-py-build
134133
run: |
135-
echo "- [x] Building works on python version ${{ matrix.python-version }}" >> $GITHUB_STEP_SUMMARY
134+
echo "- [x] Building works on python version ${{ matrix.python-version }}" >> "$GITHUB_STEP_SUMMARY"
136135
if: ${{ success() }}
137136
shell: bash
138137
- name: Run Tests
@@ -142,7 +141,7 @@ jobs:
142141
- name: Summerize Install
143142
id: sumerize-user-install
144143
run: |
145-
echo "- User Installing works on python version ${{ matrix.python-version }}" >> $GITHUB_STEP_SUMMARY
144+
echo "- [x] User Installing works on python version ${{ matrix.python-version }}" >> "$GITHUB_STEP_SUMMARY"
146145
if: ${{ success() }}
147146
shell: bash
148147
- name: Test Info

0 commit comments

Comments
 (0)