1
0
Fork 0
mirror of https://github.com/ntex-rs/ntex.git synced 2025-04-06 14:27:39 +03:00

Feature gate brotli2 encoder ()

This commit is contained in:
Nikolay Kim 2024-03-28 10:56:36 +01:00 committed by GitHub
parent d3499feb80
commit 0e21f46210
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 58 additions and 24 deletions
.github/workflows

View file

@ -31,10 +31,10 @@ jobs:
run: cargo llvm-cov clean --workspace
- name: Code coverage (glommio)
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws"
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws,brotli"
- name: Code coverage
run: cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws"
run: cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws,brotli"
- name: Generate coverage report
run: cargo +nightly llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-tokio|ntex-glommio|ntex-async-std"