Skip to content

Commit aead6c1

Browse files
committed
Merge branch 'master' into master-pgsql-tests
2 parents e0508e0 + 43eda37 commit aead6c1

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/reusable-storage-dependant-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
target_framework:
1717
description: 'Target framework'
1818
required: true
19-
default: 'net6.0'
19+
default: 'net8.0'
2020
type: string
2121
specific_sha:
2222
description: 'Commit SHA to checkout'

.github/workflows/reusable-storage-independant-tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
target_framework:
1212
description: 'Target framework'
1313
required: true
14-
default: 'net6.0'
14+
default: 'net8.0'
1515
type: string
1616
test_output_verbosity:
1717
description: 'Verbosity for dotnet test command'
@@ -123,10 +123,9 @@ jobs:
123123

124124
- name: Make Final Test report
125125
if: |
126-
(github.event_name == 'push' && steps.complex_tests.outcome != 'cancelled')
127-
|| (github.event_name == 'pull_request' && steps.complex_tests.outcome != 'cancelled')
128-
|| (github.event_name == 'workflow_dispatch' && steps.complex_tests.outcome != 'cancelled')
129-
|| steps.complex_tests.outcome == 'failure'
126+
!cancelled()
127+
&& ((github.event_name == 'push') || (github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch')
128+
|| (steps.reprocessing.outcome == 'failure' || steps.complex_tests.outcome == 'failure'))
130129
timeout-minutes: 1
131130
uses: dorny/test-reporter@v2.1.1
132131
with:

0 commit comments

Comments
 (0)