From 44319becffc97532ae8185ce9444029f5ea97292 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Thu, 12 May 2022 01:45:40 +0200 Subject: [PATCH] Added Python 3.10 to CI Matrix --- .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 674c1f9..715f86a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,11 +7,11 @@ jobs: runs-on: "ubuntu-latest" name: "Ubuntu latest - Python ${{ matrix.python-version }}" env: - USING_COVERAGE: '3.9' + USING_COVERAGE: '3.10' strategy: matrix: - python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "pypy2"] + python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy2"] redis-version: [6] steps: @@ -45,8 +45,8 @@ jobs: run: | sleep $[ ( $RANDOM % 20 ) + 1 ]s pytest --cov=./ - if [[ $PYTHON_VERSION == 3.9 ]]; then codecov; fi - if [[ $PYTHON_VERSION == 3.9 ]]; then cd docs && make html; fi + if [[ $PYTHON_VERSION == 3.10 ]]; then codecov; fi + if [[ $PYTHON_VERSION == 3.10 ]]; then cd docs && make html; fi # publish_package: # runs-on: "ubuntu-latest"