Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mastoffel committed Sep 11, 2024
1 parent 1a8492e commit aeb7a48
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,27 @@ jobs:
fail_ci_if_error: true
verbose: true

- name: Store coverage file
uses: actions/upload-artifact@v3
with:
name: coverage
path: .coverage.${{ matrix.python-version }}

- name: Debug file existence
run: |
ls -la
file .coverage.3.10
stat .coverage.3.10
pwd
- name: Check coverage file
run: |
ls -l .coverage.${{ matrix.python-version }}
echo "Coverage file exists: ${{ runner.os }}-${{ matrix.python-version }}"
- name: Wait for file
run: sleep 5

- name: Store coverage file
uses: actions/upload-artifact@v3
with:
name: coverage
path: .coverage.${{ matrix.python-version }}


# Coverage job to comment on PRs and update README badge
Expand Down

0 comments on commit aeb7a48

Please sign in to comment.