Skip to content

Commit 585586c

Browse files
authored
Merge pull request #2 from gtt-project/develop
Develop
2 parents ce2afb8 + d581c63 commit 585586c

File tree

6 files changed

+771
-23
lines changed

6 files changed

+771
-23
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

.github/workflows/redmine.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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 }}

0 commit comments

Comments
 (0)