From 0a21e7a7decd9232e4eb78ccc24bef39e31e5046 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Fri, 15 Aug 2025 11:17:09 -0400 Subject: [PATCH] no log: implemented matrix Python versions strategy to improve test coverage --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 136ca6670..1657e9205 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,14 +73,19 @@ jobs: runs-on: ubuntu-latest needs: Frontend + strategy: + matrix: + python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ] + name: Python ${{ matrix.python-version }} test + steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: ${{ matrix.python-version }} - name: Install UI uses: actions/download-artifact@v4