File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
run_tests :
14
- runs-on : ubuntu-20 .04
14
+ runs-on : ubuntu-22 .04
15
15
steps :
16
16
- name : Clone the go-tarantool connector
17
17
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 23
23
24
24
# We could replace it with ubuntu-latest after fixing the bug:
25
25
# https://github.com/tarantool/setup-tarantool/issues/37
26
- runs-on : ubuntu-20 .04
26
+ runs-on : ubuntu-22 .04
27
27
28
28
strategy :
29
29
fail-fast : false
@@ -100,9 +100,10 @@ jobs:
100
100
run : make deps
101
101
102
102
- name : Run regression tests
103
- run : |
104
- make test
105
- make testrace
103
+ run : make test
104
+
105
+ - name : Run race tests
106
+ run : make testrace
106
107
107
108
- name : Run fuzzing tests
108
109
if : ${{ matrix.fuzzing }}
@@ -116,6 +117,7 @@ jobs:
116
117
make coveralls
117
118
118
119
- name : Check workability of benchmark tests
120
+ if : matrix.golang == 'stable'
119
121
run : make bench-deps bench DURATION=1x COUNT=1
120
122
121
123
testing_mac_os :
@@ -270,6 +272,10 @@ jobs:
270
272
run : |
271
273
cd "${SRCDIR}"
272
274
make test
275
+
276
+ - name : Run race tests
277
+ run : |
278
+ cd "${SRCDIR}"
273
279
make testrace
274
280
275
281
- name : Run fuzzing tests
@@ -279,6 +285,7 @@ jobs:
279
285
make fuzzing TAGS="go_tarantool_decimal_fuzzing"
280
286
281
287
- name : Check workability of benchmark tests
288
+ if : matrix.golang == 'stable'
282
289
run : |
283
290
cd "${SRCDIR}"
284
291
make bench-deps bench DURATION=1x COUNT=1
You can’t perform that action at this time.
0 commit comments