Paul Campbell
a1e6202d97
* Add details from 5.3.6 * Add dependencies for 5.4.0 so-far * Update CI to use install target Using package was missing some lifecycle steps. * Rollback checkstyle to 8.20 - to fix build * Convert RuleSource from enum to configuration file * Split out sevntu plugin version - has own lifecycle * Upgrade sevntu from 1.35.0 to 1.37.1 * Tweak to use java version where ide can see it * Upgrade checkstyle back to 8.29 and disable sevntu rules The sevntu rules are incompatible with checkstyle 8.21+
27 lines
634 B
YAML
27 lines
634 B
YAML
# This workflow will build a Java project with Maven
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
|
|
|
|
name: Java CI with Maven
|
|
|
|
# TODO Matrix over JDK 8, 11 and latest
|
|
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
pull_request:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java: [ 8, 11 ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK ${{ matrix.java }}
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
- name: Build with Maven
|
|
run: mvn -B install
|