Skip to content

Commit 515c32a

Browse files
committed
changed to cat to display reports
1 parent 54a6fc9 commit 515c32a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/pmd.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ jobs:
3131
(cd pmd && ./pmd cpd -l python pr/toolchain/* > ../pmd-py.txt)
3232
3333
- name: Display PMD Reports
34-
uses: actions/upload-artifact@v2
35-
with:
36-
name: pmd-reports
37-
path: |
38-
pmd-fort.txt
39-
pmd-py.txt
34+
run: |
35+
echo "PMD Fortran Report:"
36+
cat /pmd/pmd-fort.txt
37+
echo "PMD Python Report:"
38+
cat /pmd/pmd-py.txt

0 commit comments

Comments
 (0)