Skip to content

Commit

Permalink
Enable Java CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcculls committed Jan 27, 2022
1 parent a2570fd commit ff312fe
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

name: Java CI

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'

- name: Build with Maven
run: mvn verify -e -B -V

0 comments on commit ff312fe

Please sign in to comment.