Skip to content

ucs01-relay: more coverage on both solidity and rust #20

ucs01-relay: more coverage on both solidity and rust

ucs01-relay: more coverage on both solidity and rust #20

Workflow file for this run

name: Coverage
on:
pull_request:
branches:
- main
permissions: read-all
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
report:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- uses: nixbuild/nix-quick-install-action@v22
- uses: hrishikesh-kadam/setup-lcov@v1
- name: Build coverage
run: |
nix --extra-experimental-features nix-command --extra-experimental-features flakes --accept-flake-config build .#evm-coverage -L
- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v3
with:
coverage-files: result/lcov.info
minimum-coverage: 90
github-token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true