Skip to content

shoot out a release #10

shoot out a release

shoot out a release #10

Workflow file for this run

name: Coverage
on:
push:
branches:
- "*"
env:
RUST_BACKTRACE: 1
jobs:
coverage:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- nightly
target:
- x86_64-unknown-linux-gnu
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.version }}
- uses: taiki-e/install-action@v2
with:
tool: cargo-tarpaulin
- name: coverage
run: cargo tarpaulin --engine llvm --coveralls ${{ secrets.COVERALLS_TOKEN }} --tests --doc --lib