Skip to content

Constructor should not be public #118

Constructor should not be public

Constructor should not be public #118

Workflow file for this run

name: Continuous Integration
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '21'
cache: 'maven'
- name: Set executable permission for Maven Wrapper
run: chmod +x ./mvnw
- name: Build with Maven
run: ./mvnw -B clean install
- name: Run Sonar
run: ./mvnw -B sonar:sonar -Dsonar.projectKey=imsweb_reportability-screener -Dsonar.organization=imsweb -Dsonar.host.url="https://sonarcloud.io" -Dsonar.token=${{ secrets.SONAR_TOKEN }}