From 658ed86cb513e24caccfdf81f73dfab86c3a05ea Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Sun, 28 May 2023 14:25:57 -0400 Subject: [PATCH] add py310 to the test matrix --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 67b989cb0..0fc7ac9d9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,11 +1,14 @@ name: PyTest -on: +on: push: pull_request: jobs: test: runs-on: ubuntu-latest + strategy: + matrix: + python_version: ["3.9", "3.10"] timeout-minutes: 10 steps: @@ -15,7 +18,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: "3.9" + python-version: ${{ matrix.python_version }} cache: 'pip' # caching pip dependencies - name: Install dependencies