From fec5fd6dad77a7b8c6cfee4186ecf2463f013cc9 Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Fri, 27 Sep 2024 15:35:21 -0500 Subject: [PATCH] Test against Python 3.13 (#587) --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e262eebf..75a0d135 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,6 +18,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13-dev" - "pypy-3.8" - "pypy-3.9" - "pypy-3.10" @@ -42,9 +43,8 @@ jobs: if: (! contains(matrix.python-version, 'pypy')) run: | coverage xml - coverage report --show-missing --fail-under=100 - name: codecov if: (! contains(matrix.python-version, 'pypy')) - uses: codecov/codecov-action@v3 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}