Skip to content

Commit 27bbde8

Browse files
committed
Create maven.yml
1 parent 09e8858 commit 27bbde8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/maven.yml

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

0 commit comments

Comments
 (0)