Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add features for other tls types #465

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ jobs:
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Install cargo-all-features
run: cargo install cargo-all-features

- name: Build
run: cargo build --verbose --all-features
run: cargo build-all-features --verbose
- name: Linting
run: cargo clippy --verbose --all-features
- name: Check formatting
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,14 @@ jobs:
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Run testsuite
run: cargo test --verbose --features "async"
- name: Install cargo-all-features
run: cargo install cargo-all-features

- name: Run unit tests
run: cargo test-all-features --verbose --lib --examples

- name: Run doc tests
run: cargo test-all-features --verbose --doc

- name: Run integration tests
run: cargo test --verbose --features "async" --benches --tests
Loading
Loading