Skip to content

Commit

Permalink
List with -a option to show dot files
Browse files Browse the repository at this point in the history
  • Loading branch information
amstilp committed Dec 18, 2023
1 parent 2ef2d6b commit 37294f1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,19 +150,20 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install --upgrade coverage "django<4" django-coverage-plugin
- name: Download coverage data
uses: actions/download-artifact@v4
with:
path: ./artifacts/

- name: List downloaded files
run: ls -R ./artifacts
run: ls -Ral ./artifacts

- name: Combine coverage data
run: |
ls -l ./artifacts/.coverage*
ls -la ./artifacts/.coverage*
python -m coverage combine --data-file=./artifacts/.coverage*
ls -R ./artifacts
ls -Ral ./artifacts
ls -la
python -m coverage xml
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 37294f1

Please sign in to comment.