diff --git a/.github/workflows/code-qualitiy.yml b/.github/workflows/code-qualitiy.yml index 189a121ba..5844cd3a3 100644 --- a/.github/workflows/code-qualitiy.yml +++ b/.github/workflows/code-qualitiy.yml @@ -1,6 +1,11 @@ name: Maven test on: workflow_dispatch: + inputs: + ignore_cache: + description: "Ignore the repository cache for this run" + required: false + default: "false" pull_request: permissions: @@ -64,3 +69,23 @@ jobs: run: mvn --batch-mode --update-snapshots clean install - name: Run reproducibility check run: mvn clean install + dirty-waters: + runs-on: + ubuntu-latest + permissions: + pull-requests: write # To comment on a Pull Request + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - name: Setup JDK17 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + - name: Dirty Waters Analysis + uses: chains-project/dirty-waters-action@v1.11.19 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + package_manager: maven + gradual_report: true