Skip to content

Commit

Permalink
Fixed YAML problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jul 16, 2021
1 parent 49d80a1 commit a0e6c2e
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: Unit Testing, Coverage Collection, Package, Release, Documentation and Pub

on: [ push ]

env:
PYTHON_LATEST: 3.9

defaults:
run:
shell: bash
Expand Down Expand Up @@ -51,7 +48,7 @@ jobs:
runs-on: ubuntu-latest

env:
PYTHON: ${{ env.PYTHON_LATEST }}
PYTHON: 3.9
outputs:
python: ${{ env.PYTHON }}

Expand Down Expand Up @@ -94,7 +91,7 @@ jobs:
coverage-reports: ./coverage.xml

Release:
name: Release Page on GitHub
name: 📝 Create 'Release Page' on GitHub
runs-on: ubuntu-latest

if: startsWith(github.ref, 'refs/tags')
Expand Down Expand Up @@ -191,7 +188,7 @@ jobs:
retention-days: 1

PublishOnPyPI:
name: Publish to PyPI
name: 🚀 Publish to PyPI
runs-on: ubuntu-latest

if: startsWith(github.ref, 'refs/tags')
Expand Down Expand Up @@ -230,11 +227,11 @@ jobs:
twine upload dist/*
VerifyDocs:
name: 👍 Verify example snippets
name: 👍 Verify example snippets using Python 3.9
runs-on: ubuntu-latest

env:
PYTHON: ${{ env.PYTHON_LATEST }}
PYTHON: 3.9
outputs:
python: ${{ env.PYTHON }}

Expand Down

0 comments on commit a0e6c2e

Please sign in to comment.