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

Commit 092a584

Browse files
authored
Merge pull request #42 from FrankSchnicke/development
Adds Java CI Workflow
2 parents e9a298f + 2a7438e commit 092a584

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
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+
pull_request:
8+
branches: [ development, feature/**, bugfix/** ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up JDK 11
18+
uses: actions/setup-java@v2
19+
with:
20+
java-version: '11'
21+
distribution: 'adopt'
22+
cache: maven
23+
- name: Build with Maven
24+
run: mvn -B package --file pom.xml

0 commit comments

Comments
 (0)