Skip to content

Commit

Permalink
Matrix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanhed committed Dec 25, 2023
1 parent 764a173 commit 33eb3ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,16 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.8", "3.9"]

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: "3.8"
python-version: ${{ matrix.python-version }}
- name: Install app & dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 33eb3ec

Please sign in to comment.