Skip to content
Merged
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
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ jobs:
cargo fmt --all -- --check
cargo clippy --workspace --all-targets -- -D warnings
- name: Check with no-default-features
shell: bash
run: cargo check --no-default-features

- name: Check with `json` feature only
shell: bash
run: cargo check --no-default-features --features json

- name: Check with `postgres4-types` feature only
shell: bash
run: cargo check --no-default-features --features postgres4-types

- name: Test
shell: bash
run: cargo test --workspace
Expand Down
Loading
Loading