Skip to content

Commit

Permalink
Merge 516af80 into 96de2c1
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnworb committed Feb 22, 2021
2 parents 96de2c1 + 516af80 commit f8bbc33
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Java CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
name: Build/Test

runs-on: ubuntu-latest

strategy:
matrix:
java_version: [1.8, 11]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
- name: Build with Maven
# TODO: use 'verify' to run ITs (https://github.com/spotify/missinglink/issues/130)
run: mvn --batch-mode --update-snapshots package

0 comments on commit f8bbc33

Please sign in to comment.