Skip to content

Update JRuby and all JRuby/Maven plugins #59

Update JRuby and all JRuby/Maven plugins

Update JRuby and all JRuby/Maven plugins #59

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Stop old builds
if: github.ref != 'refs/heads/master'
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
build:
strategy:
fail-fast: false
matrix:
java-version: [8,11]
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- name: Build & Test
run: ./mvnw -B verify