Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/code-qualitiy.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
package_manager: maven
gradual_report: true
Loading