Skip to content

Commit

Permalink
Fixes #529.
Browse files Browse the repository at this point in the history
Added Github Action Workflow for Build.

Signed-off-by: Roberto Cortez <[email protected]>
  • Loading branch information
radcortez committed Mar 10, 2020
1 parent 7f2f0b9 commit 9082032
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: MicroProfile Config Build

on:
push:
paths-ignore:
- 'editorconfig'
- '.gitattributes'
- '.gitignore'
- 'CONTRIBUTING*'
- 'CODEOWNERS'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
- 'site.yaml'
pull_request:
paths-ignore:
- 'editorconfig'
- '.gitattributes'
- '.gitignore'
- 'CONTRIBUTING*'
- 'CODEOWNERS'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
- 'site.yaml'

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
name: build with jdk ${{matrix.java}}

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

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

- name: build with maven
run: mvn verify

0 comments on commit 9082032

Please sign in to comment.