We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 386fb4a commit dd41868Copy full SHA for dd41868
.github/workflows/main.yml
@@ -275,6 +275,17 @@ jobs:
275
itest:
276
name: integration test
277
runs-on: ubuntu-latest
278
+ strategy:
279
+ # Allow other tests in the matrix to continue if one fails.
280
+ fail-fast: false
281
+ matrix:
282
+ include:
283
+ - name: bbolt
284
+ args: dbbackend=bbolt
285
+ - name: sqlite
286
+ args: dbbackend=sqlite
287
+ - name: postgres
288
+ args: dbbackend=postgres
289
steps:
290
- name: git checkout
291
uses: actions/checkout@v4
@@ -295,8 +306,8 @@ jobs:
295
306
working-directory: ./app
296
307
run: yarn
297
308
298
- - name: run check
299
- run: make itest
309
+ - name: run itest ${{ matrix.name }}
310
+ run: make itest ${{ matrix.args }}
300
311
301
312
- name: Zip log files on failure
302
313
if: ${{ failure() }}
0 commit comments