mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
Upgrades: * Maven Enforcer Plugin to 3.0.0-M3 * Maven Surefire Plugin to 3.0.0-M5 * Maven Checkstyle Plugin to 3.1.1 * Maven Bundle Plugin to 5.1.1 * Jacoco Maven Plugin to 0.8.6 * Checkstyle to 8.36.1 * JUnit Jipiter to 5.7.0 * AssertJ to 3.17.2 * Guava to 29.0-jre Fix AssertJ breaking changes Use Java 8 or Apache Commons IO instead of Guava where possible Update GitHub Actions to use JDK 14 and JDK 15-ea
22 lines
481 B
YAML
22 lines
481 B
YAML
name: Java EA
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test_jdk_ea:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
java: [16-ea]
|
|
name: 'Linux JDK ${{ matrix.java }}'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v2
|
|
- name: 'Set up JDK'
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
- name: 'Test'
|
|
run: ./mvnw -V -B --no-transfer-progress install -DskipDistribution=true
|