57
57
python-version : ' 3.9'
58
58
- uses : pre-commit/action@v3.0.0
59
59
60
- test :
60
+ test_ubuntu :
61
61
name : " Test py${{ matrix.python-version }} : fast-compile ${{ matrix.fast-compile }} : float32 ${{ matrix.float32 }} : ${{ matrix.part }}"
62
62
needs :
63
63
- changes
67
67
strategy :
68
68
fail-fast : true
69
69
matrix :
70
- python-version : ["3.7 ", "3.9 "]
70
+ python-version : ["3.8 ", "3.10 "]
71
71
fast-compile : [0,1]
72
72
float32 : [0,1]
73
73
install-numba : [1]
@@ -82,14 +82,14 @@ jobs:
82
82
- " tests/tensor/test_basic.py tests/tensor/test_inplace.py"
83
83
- " tests/tensor/test_blas.py tests/tensor/test_elemwise.py tests/tensor/test_math_scipy.py"
84
84
exclude :
85
- - python-version : " 3.7 "
85
+ - python-version : " 3.8 "
86
86
fast-compile : 0
87
87
float32 : 1
88
- - python-version : " 3.9 "
88
+ - python-version : " 3.10 "
89
89
fast-compile : 1
90
- - python-version : " 3.9 "
90
+ - python-version : " 3.10 "
91
91
float32 : 1
92
- - python-version : " 3.9 "
92
+ - python-version : " 3.10 "
93
93
part : " tests/tensor/test_math.py"
94
94
steps :
95
95
- uses : actions/checkout@v3
@@ -208,10 +208,10 @@ jobs:
208
208
if : ${{ always() }}
209
209
runs-on : ubuntu-latest
210
210
name : " All tests"
211
- needs : [changes, style, test ]
211
+ needs : [changes, style, test_ubuntu ]
212
212
steps :
213
213
- name : Check build matrix status
214
- if : ${{ needs.changes.outputs.changes == 'true' && (needs.style.result != 'success' || needs.test .result != 'success') }}
214
+ if : ${{ needs.changes.outputs.changes == 'true' && (needs.style.result != 'success' || needs.test_ubuntu .result != 'success') }}
215
215
run : exit 1
216
216
217
217
upload-coverage :
0 commit comments