Skip to content

Remove colon token from function definition and move return type afte… #480

Remove colon token from function definition and move return type afte…

Remove colon token from function definition and move return type afte… #480

Workflow file for this run

name: coverage
on: [push, pull_request]
jobs:
test:
name: coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: ./.github/actions/install_llvm
- name: Install tarpaulin
run: cargo install cargo-tarpaulin
shell: bash
- name: Generate code coverage
run: |
cargo tarpaulin --ignore-tests --verbose --all-features --workspace --timeout 120 --out Xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true