Skip to content

fix(GCI82): fix rule to handle record types and adjust test cases (#104) #260

fix(GCI82): fix rule to handle record types and adjust test cases (#104)

fix(GCI82): fix rule to handle record types and adjust test cases (#104) #260

Workflow file for this run

name: Build and Tests
on:
push:
branches:
- main
paths-ignore:
- "*.md"
- ".github/**/*.yml"
tags:
- "[0-9]+.[0-9]+.[0-9]+"
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
pull-requests: read # allows SonarCloud to decorate PRs with analysis results
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
cache: maven
- name: Verify
run: ./mvnw -e -B verify
- name: Cache SonarQube packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: SonarQube Scan
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw -e -B org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=green-code-initiative_creedengo-java