File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
38
38
swift --version
39
39
- name : Check out package
40
40
uses : actions/checkout@v4
41
- - name : Run unit tests with Thread Sanitizer
41
+ - name : Run unit tests
42
42
env :
43
43
CODE_COVERAGE : ${{ matrix.code-coverage && '--enable-code-coverage' || '' }}
44
44
run : |
45
- swift test --filter='^(PostgresNIOTests|ConnectionPoolModuleTests)' --sanitize=thread ${CODE_COVERAGE}
45
+ swift test --filter='^(PostgresNIOTests|ConnectionPoolModuleTests)' ${CODE_COVERAGE}
46
46
- name : Submit code coverage
47
47
if : ${{ matrix.code-coverage }}
48
48
@@ -139,11 +139,11 @@ jobs:
139
139
- scram-sha-256
140
140
xcode-version :
141
141
- ' ~14.3'
142
- - ' ~15.0 '
142
+ - ' ~15'
143
143
include :
144
144
- xcode-version : ' ~14.3'
145
145
macos-version : ' macos-13'
146
- - xcode-version : ' ~15.0 '
146
+ - xcode-version : ' ~15'
147
147
macos-version : ' macos-14'
148
148
runs-on : ${{ matrix.macos-version }}
149
149
env :
@@ -175,7 +175,7 @@ jobs:
175
175
- name : Checkout code
176
176
uses : actions/checkout@v4
177
177
- name : Run all tests
178
- run : swift test
178
+ run : swift test --sanitize=thread
179
179
180
180
api-breakage :
181
181
if : github.event_name == 'pull_request'
You can’t perform that action at this time.
0 commit comments