Skip to content

Commit 9b06f7b

Browse files
committed
Add workflow configuration
1 parent fbb07dc commit 9b06f7b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI for Java Invoice
2+
on: [push]
3+
jobs:
4+
test:
5+
name: Unit tests
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: Set up JDK
10+
uses: actions/setup-java@v2
11+
with:
12+
java-version: '17'
13+
distribution: 'adopt'
14+
- name: Test
15+
run: mvn test

0 commit comments

Comments
 (0)