Skip to content

A note about the work being incomplete #37

A note about the work being incomplete

A note about the work being incomplete #37

Workflow file for this run

name: coverage
on:
push:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run tarpaulin
uses: FreeMasen/tarpaulin-action@9f7e03f06fea8f374c85a95c2ecff6a4d5805845
with:
version: '0.26.1'
out-type: Lcov
args: '--avoid-cfg-tarpaulin'
- name: Coveralls Upload
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info