Skip to content

Commit a0e6c2e

Browse files
committed
Fixed YAML problem.
1 parent 49d80a1 commit a0e6c2e

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/Pipeline.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: Unit Testing, Coverage Collection, Package, Release, Documentation and Pub
22

33
on: [ push ]
44

5-
env:
6-
PYTHON_LATEST: 3.9
7-
85
defaults:
96
run:
107
shell: bash
@@ -51,7 +48,7 @@ jobs:
5148
runs-on: ubuntu-latest
5249

5350
env:
54-
PYTHON: ${{ env.PYTHON_LATEST }}
51+
PYTHON: 3.9
5552
outputs:
5653
python: ${{ env.PYTHON }}
5754

@@ -94,7 +91,7 @@ jobs:
9491
coverage-reports: ./coverage.xml
9592

9693
Release:
97-
name: Release Page on GitHub
94+
name: 📝 Create 'Release Page' on GitHub
9895
runs-on: ubuntu-latest
9996

10097
if: startsWith(github.ref, 'refs/tags')
@@ -191,7 +188,7 @@ jobs:
191188
retention-days: 1
192189

193190
PublishOnPyPI:
194-
name: Publish to PyPI
191+
name: 🚀 Publish to PyPI
195192
runs-on: ubuntu-latest
196193

197194
if: startsWith(github.ref, 'refs/tags')
@@ -230,11 +227,11 @@ jobs:
230227
twine upload dist/*
231228
232229
VerifyDocs:
233-
name: 👍 Verify example snippets
230+
name: 👍 Verify example snippets using Python 3.9
234231
runs-on: ubuntu-latest
235232

236233
env:
237-
PYTHON: ${{ env.PYTHON_LATEST }}
234+
PYTHON: 3.9
238235
outputs:
239236
python: ${{ env.PYTHON }}
240237

0 commit comments

Comments
 (0)