Drop Python 3.10 and 3.11 from CI test matrix

(cherry picked from commit 1f8751225d)
This commit is contained in:
yangdx 2025-12-02 15:36:18 +08:00 committed by Raphaël MANSUY
parent 9068c629c6
commit ea421295a6

View file

@ -1,4 +1,4 @@
name: Tests name: Offline Unit Tests
on: on:
push: push:
@ -13,13 +13,13 @@ jobs:
strategy: strategy:
matrix: matrix:
python-version: ['3.10', '3.11', '3.12'] python-version: ['3.12', '3.13', '3.14']
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5 uses: actions/setup-python@v6
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
@ -45,7 +45,7 @@ jobs:
- name: Upload test results - name: Upload test results
if: always() if: always()
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v5
with: with:
name: test-results-py${{ matrix.python-version }} name: test-results-py${{ matrix.python-version }}
path: | path: |