File tree Expand file tree Collapse file tree 6 files changed +771
-23
lines changed Expand file tree Collapse file tree 6 files changed +771
-23
lines changed Original file line number Diff line number Diff line change
1
+ # editorconfig.org
2
+ root = true
3
+
4
+ [* ]
5
+ indent_style = space
6
+ indent_size = 2
7
+ end_of_line = lf
8
+ charset = utf-8
9
+ trim_trailing_whitespace = true
10
+ insert_final_newline = true
Original file line number Diff line number Diff line change
1
+ name : Test with Redmine
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - develop
7
+ - main
8
+ pull_request :
9
+ branches :
10
+ - develop
11
+ - main
12
+
13
+ jobs :
14
+ test :
15
+ runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ redmine : [v4.0,v4.1]
19
+ ruby : [v2.6]
20
+ database : [postgresql]
21
+ steps :
22
+ - name : Checkout repository
23
+ uses : actions/checkout@v2
24
+
25
+ # - name: Redmine plugin test
26
+ # uses: two-pack/redmine-plugin-test-action@v2
27
+ # with:
28
+ # plugin_name: redmine_text_blocks
29
+ # redmine_version: ${{ matrix.redmine }}
30
+ # ruby_version: ${{ matrix.ruby }}
31
+ # database: ${{ matrix.database }}
You can’t perform that action at this time.
0 commit comments