Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/op_rbuilder_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
toolchain:
- nightly
- nightly-2026-02-21
features:
- ""

Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ docker-image-rbuilder: ## Build a rbuilder Docker image

.PHONY: lint
lint: ## Run the linters
cargo +nightly fmt -- --check
cargo +nightly clippy --all-features -- -D warnings
cargo +nightly-2026-02-21 fmt -- --check
cargo +nightly-2026-02-21 clippy --all-features -- -D warnings

.PHONY: test
test: ## Run the tests for rbuilder and op-rbuilder
Expand All @@ -90,9 +90,9 @@ lt: lint test ## Run "lint" and "test"

.PHONY: fmt
fmt: ## Format the code
cargo +nightly fmt
cargo +nightly clippy --all-features --fix --allow-staged --allow-dirty
cargo +nightly fix --allow-staged --allow-dirty
cargo +nightly-2026-02-21 fmt
cargo +nightly-2026-02-21 clippy --all-features --fix --allow-staged --allow-dirty
cargo +nightly-2026-02-21 fix --allow-staged --allow-dirty

.PHONY: bench
bench: ## Run benchmarks
Expand Down
Loading