Skip to content

Bump regex from 1.10.6 to 1.11.0 (#1628) #407

Bump regex from 1.10.6 to 1.11.0 (#1628)

Bump regex from 1.10.6 to 1.11.0 (#1628) #407

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