Skip to content

Commit

Permalink
CI: Use python-version variable everywhere
Browse files Browse the repository at this point in the history
Instead of shortening it to py.
  • Loading branch information
EwoutH authored Oct 9, 2022
1 parent 74abbeb commit 3d1502e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/py-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ name: py-check
jobs:
py-check:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} (${{ matrix.py }})
name: ${{ matrix.os }} (${{ matrix.python-version }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
py: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
include:
- os: macos-latest
python-version: "3.10"
Expand All @@ -33,7 +33,7 @@ jobs:
- name: SETUP PYTHON
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 3d1502e

Please sign in to comment.