Skip to content

Bump org.apache.maven.plugins:maven-compiler-plugin #179

Bump org.apache.maven.plugins:maven-compiler-plugin

Bump org.apache.maven.plugins:maven-compiler-plugin #179

Workflow file for this run

name: Build
on: push
env:
GRAAL_VERSION: '22.3.0'
JAVA_VERSION: '17'
JAVA_DISTRO: 'zulu'
jobs:
build:
if: startsWith(github.event.head_commit.message, '🏁 Releasing version') != true && startsWith(github.event.head_commit.message, '⬆️ Next version') != true
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v4
- name: 'Set up Java'
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
- name: 'Cache Maven packages'
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: 'Build'
run: ./mvnw -B -ntp --file pom.xml verify
- name: 'Upload coverage reports'
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}