Skip to content

Commit

Permalink
CI: Fix values from build matrix
Browse files Browse the repository at this point in the history
Fixes the parsing of the OS and Python version values from the build matrix in the GitHub Actions CI.
  • Loading branch information
EwoutH authored Oct 9, 2022
1 parent 4d02b17 commit 74abbeb
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 @@ -12,8 +12,8 @@ on:
name: py-check
jobs:
py-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.py }})
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} (${{ matrix.py }})
strategy:
fail-fast: false
matrix:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: SETUP PYTHON
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.py }}
python-version: ${{ matrix.py }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 74abbeb

Please sign in to comment.