Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ target
ci/node_modules
ci/package-lock.json
ci/cert
ci/keygen/Cargo.lock

Loading