Merge pull request #7 from halotroop/setup-actions

Setup Github Actions
pull/12/head
Caroline Bell 2020-02-25 14:48:43 -08:00 committed by GitHub
commit f64d6cef08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 6 deletions

View File

@ -1,16 +1,21 @@
name: Maven Test name: Maven Test
on: [push, pull_request] on: [push]
jobs: jobs:
build: build:
runs-on: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }}
strategy:
matrix:
java_version: [11, 13]
os: [ubuntu-latest, windows-latest]
steps: steps:
- uses: actions/checkout@v2 - name: Checkout
- name: Set up JDK 11 uses: actions/checkout@v2
uses: actions/setup-java@v1.3.0 - name: Setup Java JDK
uses: actions/setup-java@v1
with: with:
java-version: 11 java-version: ${{ matrix.java_version }}
- name: Build with Maven - name: Build with Maven
run: mvn -B package --file pom.xml run: mvn -B package --file pom.xml