Skip to content

[REFACTOR] sonarcloud sources excluded. #20

[REFACTOR] sonarcloud sources excluded.

[REFACTOR] sonarcloud sources excluded. #20

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]
java: [ '20', '21', '22' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Clean
run: ./gradlew --console=verbose clean
- name: Lint
run: ./gradlew --console=verbose checkstyleMain checkstyleTest
- name: Runt tests
run: ./gradlew --console=verbose test