1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-04 11:51:50 +00:00
trezor-firmware/.github/actions/upload-coverage/action.yml

18 lines
599 B
YAML
Raw Normal View History

2024-09-12 16:25:29 +00:00
name: 'Upload coverage data'
runs:
using: "composite"
steps:
# add per-job suffix so the .coverage files won't be overwritten during merge (by `core_coverage_report`)
- run: |
for F in core/src/.coverage core/src/.coverage.gw*
do
mv -v $F $F.${{ github.job }}${{ strategy.job-index }} || true
done
2024-09-12 16:25:29 +00:00
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