diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1b4e3d8..c985c5c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: build: strategy: matrix: - python-version: [3.8, 3.9, 3.10, 3.11, 3.12] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: @@ -46,8 +46,8 @@ jobs: - name: Upload coverage to Codecov.io run: | bash <(curl -s https://codecov.io/bash) - if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }} + if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == "3.12" }} - uses: actions/upload-artifact@v2 with: path: coverage.xml - if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }} \ No newline at end of file + if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == "3.12" }} \ No newline at end of file