Skip to content

Commit

Permalink
chore: keep rust version up-to-date in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kayagokalp committed Jun 24, 2024
1 parent ae2db37 commit b44b0cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ all: test nits

.PHONY: test
test:
rustup update
cargo test --release
cargo test --release --features=lp
# don't run examples in proof-production mode
Expand All @@ -10,6 +11,7 @@ test:

.PHONY: nits
nits:
rustup update
rustup component add rustfmt clippy
cargo fmt -- --check
cargo clean --doc
Expand All @@ -23,4 +25,4 @@ nits:

.PHONY: docs
docs:
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features --open
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features --open

0 comments on commit b44b0cb

Please sign in to comment.