File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ test :
9
+ runs-on : ubuntu-latest
10
+
11
+ strategy :
12
+ matrix :
13
+ include :
14
+ - redmine-repository : ' redmica/redmica'
15
+ redmine-version : ' stable-3.0'
16
+ ruby-version : ' 3.2'
17
+ - redmine-repository : ' redmica/redmica'
18
+ redmine-version : ' master'
19
+ ruby-version : ' 3.2'
20
+ - redmine-repository : ' redmine/redmine'
21
+ redmine-version : ' master'
22
+ ruby-version : ' 3.2'
23
+
24
+ steps :
25
+ - uses : hidakatsuya/action-setup-redmine@v1
26
+ with :
27
+ repository : ${{ matrix.redmine-repository }}
28
+ version : ${{ matrix.redmine-version }}
29
+ ruby-version : ${{ matrix.ruby-version }}
30
+ database : ' postgres:14'
31
+
32
+ - uses : actions/checkout@v4
33
+ with :
34
+ path : plugins/redmine_message_customize
35
+
36
+ - name : Set up plugin
37
+ run : bundle install
38
+
39
+ - name : Run tests
40
+ run : bin/rails redmine:plugins:test NAME=redmine_message_customize
You can’t perform that action at this time.
0 commit comments