Skip to content

Merge pull request #74 from CamoMano/1.21-dev #96

Merge pull request #74 from CamoMano/1.21-dev

Merge pull request #74 from CamoMano/1.21-dev #96

Workflow file for this run

# Automatically build the project and run any configured tests for every push and submitted pull request.
# This can help catch issues that only occur on certain platforms or Java versions, and provides a first line of defense against bad commits.
name: Build Enriched
on: [ pull_request, push ]
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
21, # Current Java LTS
]
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v2
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: gradle
- name: Make Gradle Wrapper Executable
run: chmod +x ./gradlew
- name: Build Enriched
run: ./gradlew build