Skip to content

Commit

Permalink
test on different python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
psmyth94 committed Oct 13, 2024
1 parent 5ac3beb commit d0f17d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci_cd_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python 3.10
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.10
python-version: "3.8"

- name: Install dependencies
run: |
Expand All @@ -37,7 +37,7 @@ jobs:
matrix:
test: [unit]
os: [ubuntu-latest, windows-latest]
python-version: [3.10]
python-version: [3.8, 3.9, 3.10, 3.11]
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.test == 'integration' }}
steps:
Expand All @@ -46,10 +46,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.10
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit d0f17d4

Please sign in to comment.