Skip to content

Commit

Permalink
chore: Update Python version in CI/CD workflow to support multiple ve…
Browse files Browse the repository at this point in the history
…rsions 3.9 and above
  • Loading branch information
seballgeyer committed Sep 4, 2024
1 parent ad7d68d commit f3f1050
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-cicd-units.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f3f1050

Please sign in to comment.