From 741297f78f9656df4c7f021e0bef94d2ac5f56c1 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Wed, 8 Jan 2025 15:01:55 -0800 Subject: [PATCH] run e2e tests on multiple version of python --- .github/workflows/e2e_tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e_tests.yml b/.github/workflows/e2e_tests.yml index 370988fe..24794694 100644 --- a/.github/workflows/e2e_tests.yml +++ b/.github/workflows/e2e_tests.yml @@ -8,21 +8,26 @@ on: jobs: test: + strategy: + matrix: + python-version: [3.10] # , 3.11, 3.12, 3.13] + runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - - name: Set up Python + # Set up Python + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: - python-version: "3.12" + python-version: ${{ matrix.python-version }} - name: Install Poetry run: | export POETRY_VERSION=1.8.5 - curl -sSL https://install.python-poetry.org | python3 - + curl -sSL https://install.python-poetry.org | python - export PATH="$HOME/.local/bin:$PATH" - name: Run e2e tests