We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da539cc commit baa825dCopy full SHA for baa825d
1 file changed
.github/workflows/test.yaml
@@ -6,7 +6,7 @@ on:
6
- main
7
8
jobs:
9
- build:
+ build-linux:
10
11
runs-on: ubuntu-latest
12
strategy:
@@ -28,3 +28,49 @@ jobs:
28
- name: Test with pytest
29
run: |
30
pytest
31
+
32
+ build-windows:
33
34
+ runs-on: windows-latest
35
+ strategy:
36
+ matrix:
37
+ python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
38
39
+ steps:
40
+ - uses: actions/checkout@v3
41
+ with:
42
+ submodules: "true"
43
+ - name: Set up Python ${{ matrix.python-version }}
44
+ uses: actions/setup-python@v4
45
46
+ python-version: ${{ matrix.python-version }}
47
+ - name: Install dependencies
48
+ run: |
49
+ python -m pip install --upgrade pip pytest cmake scikit-build
50
+ python3 setup.py develop
51
+ - name: Test with pytest
52
53
+ pytest
54
55
56
57
+ runs-on: macos-latest
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
0 commit comments