We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a7a3b8 commit 7ffd6d3Copy full SHA for 7ffd6d3
.github/workflows/main.yml
@@ -7,9 +7,14 @@ on: push
7
jobs:
8
9
build:
10
+ strategy:
11
+ matrix:
12
+ os: ["ubuntu-latest", "macos-latest", "windows-latest"]
13
+ python-version: ["3.10", "3.11"]
14
+
15
16
# we can also specify the OS to run tests on
- runs-on: ubuntu-latest
17
+ runs-on: ${{ matrix.os }}
18
19
# a job is a seq of steps
20
steps:
@@ -22,7 +27,7 @@ jobs:
22
27
- name: Set up Python 3.11
23
28
uses: actions/setup-python@v5
24
29
with:
25
- python-version: "3.11"
30
+ python-version: ${{ matrix.python-version }}
26
31
32
- name: Install Python dependencies
33
run: |
tests/test_models.py
0 commit comments