File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 14
14
ubuntu-latest,
15
15
ubuntu-20.04,
16
16
macos-13,
17
- macos-12,
18
17
windows-latest,
19
18
windows-2019,
20
19
]
25
24
architecture : x86
26
25
- os : macos-13
27
26
architecture : x86
28
- - os : macos-12
29
- architecture : x86
30
27
31
28
steps :
32
29
- uses : actions/checkout@v4
@@ -45,14 +42,18 @@ jobs:
45
42
46
43
- name : Install
47
44
run : |
48
- pip install .
45
+ pip install . -v
49
46
50
47
- name : Test with pytest
51
48
run : |
52
49
pip install pytest
50
+ cd doc # avoid picking up bottleneck from the source dir
53
51
pytest --pyargs bottleneck
54
52
55
53
check :
54
+ # This job is here is the "Required" one for merging PRs, and
55
+ # it only runs after all the `test` jobs above have run. Hence
56
+ # it serves as a check that CI actually ran before a PR gets merged.
56
57
needs : test
57
58
runs-on : ubuntu-latest
58
59
steps :
72
73
fetch-depth : 0
73
74
74
75
- name : Build wheels
75
- uses : pypa/cibuildwheel@v2.21.3
76
+ uses : pypa/cibuildwheel@v2.23.2
76
77
env :
77
78
CIBW_SKIP : pp*
78
79
You can’t perform that action at this time.
0 commit comments