From 4a61806e60b4d584aa72e38025669511071e8381 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 19 Oct 2021 18:52:30 +0300 Subject: [PATCH] Quote Python versions --- .github/workflows/core.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index b5d9fcab..5e7c2633 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -8,10 +8,10 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] exclude: - os: macos-latest - python-version: '3.6' + python-version: "3.6" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2