File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 9
9
- main
10
10
workflow_dispatch :
11
11
12
+ concurrency :
13
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
14
+ cancel-in-progress : true
15
+
12
16
jobs :
13
17
run_tests :
14
18
strategy :
19
+ fail-fast : false
15
20
matrix :
16
- tf_version : ['2.9.0', '2.13 .0']
21
+ tf_version : ['2.9.0', '2.15 .0']
17
22
python_version : ['3.8', '3.9']
18
23
opset_version : ['18', '15']
19
24
ort_version : ['1.16.3']
20
25
os : ['ubuntu-latest', 'windows-2022']
21
-
26
+ if : ${{ matrix.tf_version == '2.9.0' && matrix.python_version == '3.8' }}
22
27
runs-on : ${{ matrix.os }}
23
28
24
29
steps :
74
79
path : ./**/test-results-*.xml
75
80
76
81
publish-test-results :
82
+ fail-fast : false
77
83
name : " Publish Tests Results to Github"
78
84
needs : run_tests
79
85
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments