File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,8 @@ jobs:
114
114
with :
115
115
upload_to_pypi : false
116
116
upload_to_anaconda : false
117
- # FIXME! run tests
118
- # test_extras: test
119
- # test_command: pytest --pyargs src/numpy_overload
117
+ test_extras : test
118
+ test_command : ls $GITHUB_WORKSPACE; pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
120
119
121
120
test_wheel_building :
122
121
# This ensures that a couple of targets work fine in pull requests and pushes
@@ -127,11 +126,22 @@ jobs:
127
126
runs-on : ${{ matrix.os }}
128
127
129
128
strategy :
130
- fail-fast : false
129
+ fail-fast : true
131
130
matrix :
132
131
include :
133
132
- os : ubuntu-latest
134
133
name : linux-x86_64
134
+ - os : windows-2019
135
+ name : windows-amd64
136
+ - os : macos-11
137
+ name : macos-x86_64
138
+ macos_arch : " x86_64"
139
+ - os : macos-11
140
+ name : macos-arm64
141
+ macos_arch : " arm64"
142
+ - os : macos-11
143
+ name : macos-universal2
144
+ macos_arch : " universal2"
135
145
136
146
steps :
137
147
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments