Skip to content

Commit

Permalink
Test types in matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
philippmwirth committed Sep 7, 2023
1 parent c68039b commit 000d42f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test_code_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
test:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.7", "3.10"]

steps:
- name: Checkout Code
Expand All @@ -21,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: ${{ matrix.python }}
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
Expand Down

0 comments on commit 000d42f

Please sign in to comment.