From c11f7b47e4fc4c1a213a3ca2415fc8ae0158e429 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Mon, 6 Feb 2023 21:05:34 -0300 Subject: [PATCH] Update workflow to run backend tests for all supported python versions --- .github/workflows/test.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2902a56f..6ac0f873 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,13 +24,20 @@ jobs: test: name: Run Tests runs-on: ubuntu-latest - steps: + strategy: + fail-fast: false + matrix: + python_version: + - 3.8 + - 3.9 + - 3.10 + steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10 + - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: ${{ matrix.python_version }} - name: Install Dependencies run: |