Skip to content

Commit

Permalink
Merge pull request #877 from Lorak-mmk/benches-in-ci
Browse files Browse the repository at this point in the history
Makefile: build and check benches
  • Loading branch information
piodul authored Dec 12, 2023
2 parents 7d06b89 + 869c5a0 commit f01029f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ fmt-check:

.PHONY: check
check:
cargo check --examples --tests
cargo check --all-targets

.PHONY: check-without-features
check-without-features:
cargo check --manifest-path "scylla/Cargo.toml" --features ""
cargo check --manifest-path "scylla/Cargo.toml" --features "" --all-targets

.PHONY: clippy
clippy:
RUSTFLAGS=-Dwarnings cargo clippy --examples --tests -- -Aclippy::uninlined_format_args
RUSTFLAGS=-Dwarnings cargo clippy --all-targets -- -Aclippy::uninlined_format_args

.PHONY: test
test: up
Expand All @@ -42,7 +42,7 @@ dockerized-test: up

.PHONY: build
build:
cargo build --examples
cargo build --examples --benches

.PHONY: docs
docs:
Expand Down

0 comments on commit f01029f

Please sign in to comment.