Skip to content

Rename build -> build-deploy and create a build test workflow on PRs #1

Rename build -> build-deploy and create a build test workflow on PRs

Rename build -> build-deploy and create a build test workflow on PRs #1

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --info