Skip to content

GCToolKit build with Maven #990

GCToolKit build with Maven

GCToolKit build with Maven #990

Workflow file for this run

name: GCToolKit build with Maven
on:
workflow_dispatch:
schedule:
- cron: 0 0 * * *
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
cache: 'maven'
- name: Build with Maven
run: ./mvnw -B verify --file pom.xml