diff --git a/.github/workflows/tests-e2e.yml b/.github/workflows/tests-e2e.yml index e148bfac..6a4ad105 100644 --- a/.github/workflows/tests-e2e.yml +++ b/.github/workflows/tests-e2e.yml @@ -15,6 +15,9 @@ on: jobs: test: runs-on: arc-runner-set + strategy: + matrix: + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] steps: - name: Checkout repository uses: actions/checkout@v4 @@ -22,7 +25,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: ${{ matrix.python-version }} - name: Install dependencies run: |