Skip to content

Commit

Permalink
add matrix python
Browse files Browse the repository at this point in the history
  • Loading branch information
dipinknair committed Apr 4, 2024
1 parent a2534c9 commit c1379ff
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,10 @@ jobs:
image: ${{ needs.revn-variations.outputs.stable_container }}
options: --entrypoint /bin/bash
needs: [style, doc-style, revn-variations]
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:

Expand All @@ -367,8 +371,8 @@ jobs:
apt install --reinstall ca-certificates
apt install software-properties-common -y
add-apt-repository ppa:deadsnakes/ppa -y
apt install -y python${{ env.MAIN_PYTHON_VERSION }} python${{ env.MAIN_PYTHON_VERSION }}-venv
python${{ env.MAIN_PYTHON_VERSION }} -m venv /env
apt install -y python${{ matrix.python-version }} python${{ matrix.python-version }}-venv
python${{ matrix.python-versionn }} -m venv /env
- name: Install system dependencies
run: |
Expand Down

0 comments on commit c1379ff

Please sign in to comment.