Skip to content

Bump gimli from 0.29.0 to 0.30.0 (#1558) #343

Bump gimli from 0.29.0 to 0.30.0 (#1558)

Bump gimli from 0.29.0 to 0.30.0 (#1558) #343

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 }}