mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 05:58:09 +00:00
13 lines
423 B
YAML
13 lines
423 B
YAML
name: 'Upload coverage data'
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: mv core/src/.coverage core/src/.coverage.${{ github.job }}${{ strategy.job-index }} || true
|
|
shell: sh
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: core-coverage-${{ matrix.model }}-${{ github.job }}-${{ strategy.job-index }}
|
|
path: core/src/.coverage.*
|
|
retention-days: 7
|
|
include-hidden-files: true
|