use python 3.10, 3.11, 3.12 and 3.13

This commit is contained in:
Adil Hafeez 2025-08-10 22:18:30 -07:00
parent 5bc96b139e
commit 8794a3a35f
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
3 changed files with 281 additions and 266 deletions

View file

@ -9,6 +9,11 @@ on:
jobs:
e2e_archgw_tests:
runs-on: ubuntu-latest-m
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
defaults:
run:
working-directory: ./tests/archgw
@ -20,7 +25,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}
cache: "pip" # auto-caches based on requirements files
- name: build arch docker image
run: |