Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

[SECOPS-14788]

[SECOPS-14788] #225

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java-Gradle
on:
push:
branches: [ master, next ]
pull_request:
branches: [ master, next ]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 3
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17.0
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Test
run: ./gradlew test