Skip to content

Use Gradle task type instead of its name while configuring #229

Use Gradle task type instead of its name while configuring

Use Gradle task type instead of its name while configuring #229

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 17, 21]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'gradle'
- name: Build
run: ./gradlew build