From 39c7487d2c7e5ea3453232daeb52839c69378368 Mon Sep 17 00:00:00 2001 From: IanCa Date: Thu, 12 Oct 2023 16:19:34 -0500 Subject: [PATCH] don't treat 3.10 as 3.1 --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 25f09d8b..ea78321f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,12 +16,12 @@ jobs: run: | if [[ "${{ github.event_name }}" == 'push' && "${{ github.ref }}" == 'refs/heads/master' ]]; then # Push to master branch - echo "matrix=[3.7, 3.9, 3.10, 3.11]" >> $GITHUB_OUTPUT + echo 'matrix=["3.7", "3.9", "3.10", "3.11"]' >> $GITHUB_OUTPUT elif [[ "${{ github.event_name }}" == 'pull_request' && "${{ github.event.pull_request.base.ref }}" == 'master' ]]; then # PR to master branch - echo "matrix=[3.7, 3.9, 3.10, 3.11]" >> $GITHUB_OUTPUT + echo 'matrix=["3.7", "3.9", "3.10", "3.11"]' >> $GITHUB_OUTPUT else - echo "matrix=[3.9]" >> $GITHUB_OUTPUT + echo 'matrix=["3.9"]' >> $GITHUB_OUTPUT fi build: