Skip to content

feat: update timeout #1626

feat: update timeout

feat: update timeout #1626

Workflow file for this run

name: coverage-test
on: ["push", "pull_request"]
jobs:
code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-01-21
override: true
components: rustfmt, clippy
- name: install-tarpaulin
run: cargo install cargo-tarpaulin -f --version 0.19.0
- name: run coverage test
run: |
export CODECOV_TOKEN=${{secrets.CODECOV_TOKEN}}
cd ckb-contracts && bash ckb_script_coverage.sh
cd ..
cd eth-contracts && yarn install && bash eth_script_coverage.sh