Skip to content

Commit 86c39ec

Browse files
committed
Merge branch 'master' of github.com:codenerve-com/tutorials
2 parents 48c48d9 + ab4d657 commit 86c39ec

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/java-ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
paths: java
10+
pull_request:
11+
branches: [ master ]
12+
paths: java
13+
14+
jobs:
15+
build:
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: Set up JDK 11
22+
uses: actions/setup-java@v1
23+
with:
24+
java-version: 11
25+
- name: Build with Maven
26+
run: mvn -B package --file pom.xml
27+
working-directory: kotlin

0 commit comments

Comments
 (0)