From b87d752ef868c86e385eb575c25f9e854e3edb6f Mon Sep 17 00:00:00 2001 From: Clif Bratcher Date: Mon, 29 Apr 2024 19:56:52 -0400 Subject: [PATCH] change quotes? grasping at straws --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 868484d..8d93c8b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - os: ["windows-latest", "ubuntu-latest"] + os: [windows-latest, ubuntu-latest] python-version: ["3.9", "3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} steps: @@ -32,6 +32,6 @@ jobs: if: ${{ always() }} - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1 - if: matrix.runs-on == "ubuntu-latest" && matrix.python-version == "3.12" + if: matrix.runs-on == 'ubuntu-latest' && matrix.python-version == '3.12' with: token: ${{ secrets.CODECOV_TOKEN }}