From a4293e2806a4f2c7e709ceba7077333a3c7e2d01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Tue, 13 Jun 2023 17:17:02 +0200 Subject: [PATCH] Add Python 3.11 to test workflow matrix --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 14192ef9..4a695f84 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - py_version: ['2.7', '3.9'] + py_version: ['2.7', '3.9', '3.11'] steps: - name: Checkout repository uses: actions/checkout@v3 @@ -48,7 +48,7 @@ jobs: - name: Upload coverage uses: codecov/codecov-action@v3.1.1 - if: ${{ matrix.py_version == '3.9' }} + if: ${{ matrix.py_version == '3.11' }} - name: Publish Test Artifact uses: actions/upload-artifact@v3