Skip to content

Commit

Permalink
fix template
Browse files Browse the repository at this point in the history
  • Loading branch information
KitHat committed Dec 24, 2024
1 parent 47bed0e commit eb0c045
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@ jobs:
- name: Generate generic runtime coverage
run: |
ls -l
cd generic-runtime/runtime
cd generic-template/runtime
cargo llvm-cov --all-features --ignore-filename-regex ".*(weights|benchmark).*" --codecov --output-path lcov.info
- name: Generate EVM runtime coverage
run: |
cd evm-runtime/runtime
cd evm-template/runtime
cargo llvm-cov --all-features --ignore-filename-regex ".*(weights|benchmark).*" --codecov --output-path lcov.info
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
files: ./generic-runtime/runtime/lcov.info,./evm-runtime/runtime/lcov.info
files: ./generic-template/runtime/lcov.info,./evm-template/runtime/lcov.info
fail_ci_if_error: true

0 comments on commit eb0c045

Please sign in to comment.