1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-09 00:39:35 +00:00

added grcov action

This commit is contained in:
Luro02 2019-09-27 14:36:37 +02:00
parent d845598b43
commit b38d00e334

View file

@ -82,3 +82,20 @@ jobs:
with:
command: clippy
args: -- -D warnings
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --no-fail-fast
env:
'CARGO_INCREMENTAL': '0'
'RUSTFLAGS': '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads'
- uses: actions-rs/grcov@v0.1