no log: implemented matrix Python versions strategy to improve test coverage

This commit is contained in:
morpheus65535
2025-08-15 11:17:09 -04:00
parent c52dede0de
commit 0a21e7a7de

View File

@@ -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