From 74abbebc50df23f87630139c4faa8f9d3603b97f Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 10 Oct 2022 00:34:47 +0200 Subject: [PATCH] CI: Fix values from build matrix Fixes the parsing of the OS and Python version values from the build matrix in the GitHub Actions CI. --- .github/workflows/py-check.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/py-check.yaml b/.github/workflows/py-check.yaml index 882460f..4abea21 100644 --- a/.github/workflows/py-check.yaml +++ b/.github/workflows/py-check.yaml @@ -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: @@ -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