We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a3693 commit 6493227Copy full SHA for 6493227
.github/workflows/pmd.yml
@@ -20,7 +20,7 @@ jobs:
20
distribution: temurin
21
java-version: '17'
22
23
- - name: Run CPD for Fortran
+ - name: Run CPD for Fortran & Python
24
continue-on-error: true
25
env:
26
PMD_VERSION: 7.14.0
@@ -34,19 +34,10 @@ jobs:
34
--dir /pr/src \
35
--language fortran \
36
--minimum-tokens=10 \
37
- --fail-on-violation false \
38
- > ../pmd-fort.txt
+ --fail-on-violation false
39
40
"${PMD_HOME}/bin/pmd" cpd \
41
--dir /pr/toolchain \
42
43
44
45
- > ../pmd-py.txt
46
-
47
- - name: Display PMD Reports
48
- run: |
49
- echo "PMD Fortran Report:"
50
- cat pmd-fort.txt
51
- echo "PMD Python Report:"
52
- cat pmd-py.txt
0 commit comments