Skip to content

Bump tracing from 0.1.39 to 0.1.40 (#1409) #228

Bump tracing from 0.1.39 to 0.1.40 (#1409)

Bump tracing from 0.1.39 to 0.1.40 (#1409) #228

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 }}
- name: coverage
run: cargo run --release -- tarpaulin --engine llvm --follow-exec --post-test-delay 10 --coveralls ${{ secrets.COVERALLS_TOKEN }}