Rename runtime to neon (#513)

This commit is contained in:
Nikolay Kim 2025-03-10 12:06:13 +05:00 committed by GitHub
parent 8ffa646af7
commit 4e77e9ce24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
36 changed files with 113 additions and 217 deletions

View file

@ -32,11 +32,11 @@ jobs:
- name: Code coverage (compio)
run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
- name: Code coverage (default)
run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/default-rt,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
- name: Code coverage (neon)
run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/neon,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
- name: Generate coverage report
run: cargo llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-compio|ntex-tokio|ntex-async-std"
run: cargo llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-compio|ntex-tokio"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4