Skip to content

Add separate GH workflow for PRs. Add ability to run GH workflow manu… #13

Add separate GH workflow for PRs. Add ability to run GH workflow manu…

Add separate GH workflow for PRs. Add ability to run GH workflow manu… #13

Workflow file for this run

name: Java CI with Gradle
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --no-daemon