File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1111
1212jobs :
1313 run_tests :
14- runs-on : ubuntu-20 .04
14+ runs-on : ubuntu-22 .04
1515 steps :
1616 - name : Clone the go-tarantool connector
1717 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 2323
2424 # We could replace it with ubuntu-latest after fixing the bug:
2525 # https://github.com/tarantool/setup-tarantool/issues/37
26- runs-on : ubuntu-20 .04
26+ runs-on : ubuntu-22 .04
2727
2828 strategy :
2929 fail-fast : false
@@ -100,9 +100,10 @@ jobs:
100100 run : make deps
101101
102102 - 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
106107
107108 - name : Run fuzzing tests
108109 if : ${{ matrix.fuzzing }}
@@ -116,6 +117,7 @@ jobs:
116117 make coveralls
117118
118119 - name : Check workability of benchmark tests
120+ if : matrix.golang == 'stable'
119121 run : make bench-deps bench DURATION=1x COUNT=1
120122
121123 testing_mac_os :
@@ -270,6 +272,10 @@ jobs:
270272 run : |
271273 cd "${SRCDIR}"
272274 make test
275+
276+ - name : Run race tests
277+ run : |
278+ cd "${SRCDIR}"
273279 make testrace
274280
275281 - name : Run fuzzing tests
@@ -279,6 +285,7 @@ jobs:
279285 make fuzzing TAGS="go_tarantool_decimal_fuzzing"
280286
281287 - name : Check workability of benchmark tests
288+ if : matrix.golang == 'stable'
282289 run : |
283290 cd "${SRCDIR}"
284291 make bench-deps bench DURATION=1x COUNT=1
You can’t perform that action at this time.
0 commit comments