Skip to content

Commit

Permalink
Merge pull request #13 from av1m/action-maven
Browse files Browse the repository at this point in the history
Github Action CI for maven
  • Loading branch information
GabG02 authored May 2, 2020
2 parents d505681 + 9374fce commit 864d326
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Java CI with Maven

on:
push:
branches:
- '*'
- '*/*'
paths:
- 'src/**'
- '**.java'
pull_request:
branches: [master]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Verify maven
run: mvn -B verify --file pom.xml

0 comments on commit 864d326

Please sign in to comment.