This repository has been archived by the owner on Dec 7, 2024. It is now read-only.
Add validation for main class and api version #93
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
# Only run on PRs if the source branch is on someone else's repo | |
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 8, 11, 17 ] | |
fail-fast: true | |
steps: | |
- uses: actions/[email protected] | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: JDK ${{ matrix.java }} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{ matrix.java }} | |
cache: 'gradle' | |
distribution: 'temurin' | |
- name: build | |
run: ./gradlew build --stacktrace |