Skip to content

Commit f1f93a7

Browse files
committed
Basics of GH Actions (without test)
Signed-off-by: Daniel Kastl <[email protected]>
1 parent c771b78 commit f1f93a7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/redmine.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Test with Redmine
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- main
8+
pull_request:
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
redmine: [v4.0,v4.1]
16+
ruby: [v2.6]
17+
database: [postgresql]
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v2
21+
22+
# - name: Redmine plugin test
23+
# uses: two-pack/redmine-plugin-test-action@v2
24+
# with:
25+
# plugin_name: redmine_text_blocks
26+
# redmine_version: ${{ matrix.redmine }}
27+
# ruby_version: ${{ matrix.ruby }}
28+
# database: ${{ matrix.database }}

0 commit comments

Comments
 (0)