mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Restart timer after runtime stop (#154)
* Code coverage * Restart timer after runtime stop
This commit is contained in:
parent
67eb653ef2
commit
4baf42d6d1
8 changed files with 62 additions and 47 deletions
37
.github/workflows/cov.yml
vendored
Normal file
37
.github/workflows/cov.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: Coverage
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
coverage:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install Rust
|
||||
run: rustup toolchain install stable --component llvm-tools-preview
|
||||
|
||||
- name: Install cargo-llvm-cov
|
||||
uses: taiki-e/install-action@cargo-llvm-cov
|
||||
|
||||
- name: Generate Cargo.lock
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: generate-lockfile
|
||||
|
||||
- name: Cache Dependencies
|
||||
uses: Swatinem/rust-cache@v1.0.1
|
||||
|
||||
- name: Code coverage
|
||||
run: cargo llvm-cov --all --all-features --lcov --output-path lcov.info
|
||||
|
||||
- name: Code coverage (glommio)
|
||||
run: cargo llvm-cov --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls" --lcov --output-path lcov.info
|
||||
|
||||
- name: Upload coverage to Codecov
|
||||
uses: codecov/codecov-action@v3
|
||||
with:
|
||||
files: lcov.info
|
||||
fail_ci_if_error: true
|
Loading…
Add table
Add a link
Reference in a new issue