Skip to content

Commit cff1121

Browse files
authored
Create run-unit-tests.yml
1 parent 9c7e41b commit cff1121

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: run unit tests of feature branches
2+
3+
on:
4+
push:
5+
branches:
6+
'feature/*'
7+
8+
jobs:
9+
run-unit-test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: checkout
14+
uses: actions/checkout@v3.3.0
15+
16+
- name: run unit test
17+
run: mvn test
18+

0 commit comments

Comments
 (0)