diff --git a/.github/workflows/python-cicd-units.yml b/.github/workflows/python-cicd-units.yml index bd371da..37d2252 100644 --- a/.github/workflows/python-cicd-units.yml +++ b/.github/workflows/python-cicd-units.yml @@ -6,12 +6,16 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.9, 3.10, 3.11, 3.12] + steps: - uses: actions/checkout@v2 - - name: Set up Python 3.12 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: - python-version: "3.12" + python-version: ${{ matrix.python-version } - name: Install dependencies run: | python -m pip install --upgrade pip