Skip to content

fix: bump apollo-cw-asset #17

fix: bump apollo-cw-asset

fix: bump apollo-cw-asset #17

Workflow file for this run

name: Test coverage
on:
pull_request:
branches:
- master
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
jobs:
coverage:
name: Check test coverage
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.79.0
target: wasm32-unknown-unknown
override: true
- name: Install tarpaulin
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-tarpaulin --version 0.20.1
- name: Run code coverage check with tarpaulin
uses: actions-rs/cargo@v1
with:
command: tarpaulin
args: --workspace --timeout 120