Skip to content

Commit

Permalink
Trying to access environment variable (2).
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCBrammer committed Jun 8, 2021
1 parent 610bb04 commit 76350e3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ PYTHON_VERSION }}
python-version: ${{ env.PYTHON_VERSION }}

- name: Install dependencies
run: |
Expand All @@ -41,7 +41,6 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ${{ PYTHON_VERSION }}

steps:

Expand All @@ -50,7 +49,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ env.PYTHON_VERSION }}

- name: Install and configure Poetry
uses: snok/install-poetry@v1.1.6
Expand Down Expand Up @@ -106,7 +105,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ PYTHON_VERSION }}
python-version: ${{ env.PYTHON_VERSION }}

- name: Install and configure Poetry
uses: snok/install-poetry@v1.1.6
Expand Down Expand Up @@ -143,7 +142,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ PYTHON_VERSION }}
python-version: ${{ env.PYTHON_VERSION }}

- name: Install and configure Poetry
uses: snok/install-poetry@v1.1.6
Expand Down

0 comments on commit 76350e3

Please sign in to comment.