Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 808b0eb

Browse files
authored
add feature tests
1 parent 8013e96 commit 808b0eb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Run all Tests on Feature Branches
2+
3+
on:
4+
push:
5+
branches:
6+
- '!master'
7+
- 'feature/**'
8+
9+
jobs:
10+
Run-All-Tests:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
-
15+
uses: actions/checkout@v1
16+
-
17+
name: Set up JDK
18+
uses: actions/setup-java@v1
19+
with:
20+
java-version: '11.0.8'
21+
architecture: x64
22+
-
23+
name: Run all Tests
24+
run: mvn clean test -f pom.xml
25+
-
26+
name: Upload CodeCov.
27+
run: bash <(curl -s https://codecov.io/bash) -Z

0 commit comments

Comments
 (0)