Skip to content

Commit 27c8219

Browse files
authored
Create maven.yml for GitHub Actions
1 parent 060161e commit 27c8219

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/maven.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Java CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up JDK 1.8_x86
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
architecture: x86
17+
- name: Build with Maven
18+
run: mvn -B package --file pom.xml

0 commit comments

Comments
 (0)