Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
pytest --cov=pymodaq_data -n 1
mv .coverage coverage/coverage_${{ matrix.os }}_${{ matrix.python-version }}
- name: Upload coverage artifact
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v5.0.0
with:
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
path: coverage/coverage_${{ matrix.os }}_${{ matrix.python-version }}
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Upload badge artifact
if: ${{ always() }}
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v5.0.0
with:
name: tests_${{runner.os}}_${{matrix.python-version}}
path: '${{ steps.extract_branch.outputs.branch }}/tests_${{runner.os}}_${{matrix.python-version}}.svg'
Expand All @@ -118,7 +118,7 @@ jobs:
ref: badges

- name: Download badges
uses: actions/download-artifact@v5.0.0
uses: actions/download-artifact@v6.0.0

- name: Reorganize badges
run: |
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
uses: actions/[email protected]

- name: Download all coverage artifacts
uses: actions/download-artifact@v5.0.0
uses: actions/download-artifact@v6.0.0
with:
path: ./coverage-reports

Expand Down