Skip to content

Commit

Permalink
feat: add GH actions to build
Browse files Browse the repository at this point in the history
  • Loading branch information
hoegertn authored Jan 25, 2022
1 parent 6e570fe commit ed603a0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Java CI with Maven

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean install

0 comments on commit ed603a0

Please sign in to comment.