Skip to content

[CONFIG] Java script for github-actions. Split in 2: One for Coverage… #1

[CONFIG] Java script for github-actions. Split in 2: One for Coverage…

[CONFIG] Java script for github-actions. Split in 2: One for Coverage… #1

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CI Tests with Gradle
on:
push:
branches: [ main, develop, feature/* ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
gradle:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 20
uses: actions/setup-java@v4
with:
java-version: '20'
distribution: temurin
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v3
- name: Setup and execute Gradle 'test' task
uses: gradle/gradle-build-action@v3
with:
arguments: --console=verbose clean checkstyleMain checkstyleTest test