Skip to content

Commit 10d6f65

Browse files
committed
Test matrix
Signed-off-by: Daniel Kastl <[email protected]>
1 parent 405f07c commit 10d6f65

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/redmine.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
redmine: [v3.4,v4.0,v4.1]
15+
ruby: [v2.6]
16+
database: [postgresql]
1217
steps:
1318
- name: Checkout repository
1419
uses: actions/checkout@v2
@@ -17,6 +22,6 @@ jobs:
1722
uses: two-pack/redmine-plugin-test-action@v2
1823
with:
1924
plugin_name: redmine_text_blocks
20-
redmine_version: v4.1
21-
ruby_version: v2.6
22-
database: postgresql
25+
redmine_version: ${{ matrix.redmine }}
26+
ruby_version: ${{ matrix.ruby }}
27+
database: ${{ matrix.database }}

0 commit comments

Comments
 (0)