54
54
- name : Run tests
55
55
run : poetry run python3 -m invoke test-ci-addons -n 1 --junit
56
56
- name : Upload report
57
- if : (github.event_name != 'pull_request') && ( success() || failure()) # run this step even if previous step failed
57
+ if : (success() || failure()) # run this step even if previous step failed
58
58
uses : ./.github/actions/gen-report
59
59
60
60
website :
81
81
- name : Run tests
82
82
run : poetry run python3 -m invoke test-ci-website -n 1 --junit
83
83
- name : Upload report
84
- if : (github.event_name != 'pull_request') && ( success() || failure()) # run this step even if previous step failed
84
+ if : (success() || failure()) # run this step even if previous step failed
85
85
uses : ./.github/actions/gen-report
86
86
87
87
api1_and_js :
@@ -110,7 +110,7 @@ jobs:
110
110
- name : Run test
111
111
run : poetry run python3 -m invoke test-ci-api1-and-js -n 1 --junit
112
112
- name : Upload report
113
- if : (github.event_name != 'pull_request') && ( success() || failure()) # run this step even if previous step failed
113
+ if : (success() || failure()) # run this step even if previous step failed
114
114
uses : ./.github/actions/gen-report
115
115
116
116
api2 :
@@ -137,7 +137,7 @@ jobs:
137
137
- name : Run tests
138
138
run : poetry run python3 -m invoke test-ci-api2 -n 1 --junit
139
139
- name : Upload report
140
- if : (github.event_name != 'pull_request') && ( success() || failure()) # run this step even if previous step failed
140
+ if : (success() || failure()) # run this step even if previous step failed
141
141
uses : ./.github/actions/gen-report
142
142
143
143
api3_and_osf :
@@ -165,5 +165,5 @@ jobs:
165
165
- name : Run tests
166
166
run : poetry run python3 -m invoke test-ci-api3-and-osf -n 1 --junit
167
167
- name : Upload report
168
- if : (github.event_name != 'pull_request') && ( success() || failure()) # run this step even if previous step failed
168
+ if : (success() || failure()) # run this step even if previous step failed
169
169
uses : ./.github/actions/gen-report
0 commit comments