fix: report validation #748
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: Run Tests | |
on: | |
push: | |
branches-ignore: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:16.3 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'corretto' | |
- name: Test | |
run: | | |
./gradlew clean test jacocoTestReport | |
- name: Spotless | |
run : | | |
./gradlew spotlessCheck | |
- name: SonarCloud Scan | |
env: | |
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} | |
run: | | |
./gradlew sonar \ | |
-Dsonar.host.url=https://sonarcloud.io \ | |
-Dsonar.organization=cardano-foundation \ | |
-Dsonar.projectKey=cardano-foundation_cf-lob-platform \ | |
-Dsonar.branch.name=${{ github.head_ref }} | |
# mutation-test: | |
# needs: test | |
# runs-on: ubuntu-latest | |
# services: | |
# postgres: | |
# image: postgres | |
# env: | |
# POSTGRES_USER: postgres | |
# POSTGRES_PASSWORD: postgres | |
# POSTGRES_DB: postgres | |
# ports: | |
# - 5432:5432 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: Setup JDK 21 | |
# uses: actions/setup-java@v4 | |
# with: | |
# java-version: '21' | |
# distribution: 'corretto' | |
# | |
# - name: PiTest | |
# run: | | |
# ./gradlew clean pitest | |
# - name: Publish mutation test report to GitHub Pages | |
# uses: JamesIves/github-pages-deploy-action@v4 | |
# if: github.ref == 'refs/heads/main' | |
# with: | |
# BRANCH: gh-pages | |
# folder: build/reports/pitest/ | |
# target-folder: mutation-report/ |