Skip to content

Commit

Permalink
Merge pull request #13 from gwtplus/feature/github-action
Browse files Browse the repository at this point in the history
On push run the build using github actions.
  • Loading branch information
metteo authored Jun 9, 2020
2 parents ef4d2b5 + 5fa22f9 commit 2073039
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: google-gin

on: [push]

jobs:
verify:

runs-on: ubuntu-latest
strategy:
matrix:
java: ['8', '11.0.6+10']

steps:
- name: git
uses: actions/checkout@v2

- name: java
uses: actions/[email protected]
with:
java-version: ${{matrix.java}}

- name: maven
run: ./mvnw -B clean verify --file pom.xml

0 comments on commit 2073039

Please sign in to comment.