Skip to content

Commit

Permalink
enable GitHub Actions CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: sullis <[email protected]>
  • Loading branch information
sullis committed Apr 17, 2021
1 parent bc2f84a commit 2372956
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
pull_request_target:
branches:
- main
push:
branches:
- main

jobs:
build:
strategy:
matrix:
java: [ '8', '16' ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Maven build
run: mvn --no-transfer-progress -B clean test

0 comments on commit 2372956

Please sign in to comment.