vprofile actions #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: vprofile actions | |
on: workflow_dispatch | |
env: | |
AWS_REGION: us-east-2 | |
ECR_REPOSITORY: vprofileapp | |
EKS_CLUSTER: vprofile-eks | |
jobs: | |
Testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v4 | |
- name: Maven test | |
run: mvn test | |
- name: Checkstyle | |
run: mvn checkstyle:checkstyle | |
# Setup java 11 to be default (sonar-scanner requirement as of 5.x) | |
- name: Set Java 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' # See 'Supported distributions' for available options | |
java-version: '11' | |
# Setup sonar-scanner | |
- name: Setup SonarQube | |
uses: warchant/setup-sonar-scanner@v7 | |
# Run sonar-scanner | |
- name: SonarQube Scan | |
run: sonar-scanner | |
-Dsonar.host.url=${{ secrets.SONAR_URL }} | |
-Dsonar.login=${{ secrets.SONAR_TOKEN }} | |
-Dsonar.organization=${{ secrets.SONAR_ORGANIZATION }} | |
-Dsonar.projectKey=${{ secrets.SONAR_PROJECT_KEY }} | |
-Dsonar.sources=src/ | |
-Dsonar.junit.reportsPath=target/surefire-reports/ | |
-Dsonar.jacoco.reportsPath=target/jacoco.exec | |
-Dsonar.java.checkstyle.reportPaths=target/checkstyle-result.xml | |
-Dsonar.java.binaries=target/test-classes/com/visualpathit/account/controllerTest/ | |
# Check the Quality Gate status. | |
- name: SonarQube Quality Gate check | |
id: sonarqube-quality-gate-check | |
uses: sonarsource/sonarqube-quality-gate-action@master | |
# Force to fail step after specific time. | |
timeout-minutes: 5 | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_HOST_URL: ${{ secrets.SONAR_URL }} #OPTIONAL | |