Skip to content

Commit

Permalink
Removed if-guard in copy statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 16, 2023
1 parent 6f45ecf commit 0d95f30
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ jobs:
- name: Copy Artifacts into Root Folder
working-directory: ./artifacts
run: |
ls -Rla
if [ -f .coverage/.coverage ]; then cp .coverage/.coverage ../; fi
if [ -f .lint.txt/.lint.txt ]; then cp .lint.txt/.lint.txt ../ ; fi
cp .coverage/.coverage ../
cp .lint.txt/.lint.txt ../
- name: Generate Report
run: poetry run nox -s report -- -- --format json | tee metrics.json
Expand Down

0 comments on commit 0d95f30

Please sign in to comment.