Initial impl for async-std support (#87)

* initial impl for async-std support
This commit is contained in:
Nikolay Kim 2021-12-28 23:58:01 +06:00 committed by GitHub
parent 7751e944f4
commit 56ed50c6e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 946 additions and 51 deletions

View file

@ -56,6 +56,13 @@ jobs:
command: test
args: --all --all-features --no-fail-fast -- --nocapture
- name: Run async-std tests
timeout-minutes: 40
continue-on-error: true
run: |
cd ntex
cargo test --no-default-features --no-fail-fast --features="async-std,cookie,url,compress,openssl,rustls" --lib -- --test-threads 1
- name: Install tarpaulin
if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
continue-on-error: true
@ -67,6 +74,8 @@ jobs:
continue-on-error: true
run: |
cargo tarpaulin --out Xml --all --all-features
cd ntex
cargo tarpaulin --out Xml --output-dir=.. --no-default-features --features="async-std,cookie,url,compress,openssl,rustls" --lib
- name: Upload to Codecov
if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')