From b3c9b745a1f3c66f2558b00493ff39ec89928e00 Mon Sep 17 00:00:00 2001 From: jkeifer Date: Tue, 31 May 2022 10:46:17 -0700 Subject: [PATCH] workflow python versions should be quoted --- .github/workflows/python-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 148dc69..be2ba99 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -11,7 +11,11 @@ jobs: build: strategy: matrix: - python-version: [3.7, 3.8, 3.9, 3.10] + python-version: + - '3.7' + - '3.8' + - '3.9' + - '3.10' runs-on: ubuntu-latest steps: - name: Checkout