Skip to content

Commit

Permalink
test against various python versiosn
Browse files Browse the repository at this point in the history
  • Loading branch information
alinelena committed Nov 14, 2024
1 parent bd41231 commit 8e2cc77
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/unittest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ on:
jobs:
pytest-container:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9','3.10','3.11','3.12']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
cache: "pip"

- name: Install requirements
Expand Down

0 comments on commit 8e2cc77

Please sign in to comment.