Skip to content

Commit

Permalink
Split Recipe::run into Recipe::{run_shebang,run_linewise}
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Jul 21, 2022
1 parent 64b4d71 commit bf1ae4b
Show file tree
Hide file tree
Showing 4 changed files with 197 additions and 167 deletions.
7 changes: 7 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ export JUST_LOG := log
test:
cargo test

ci: build-book
cargo test --all
cargo clippy --all --all-targets
cargo fmt --all -- --check
./bin/forbid
cargo update --locked --package just

fuzz:
cargo +nightly fuzz run fuzz-compiler

Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
clippy::shadow_unrelated,
clippy::struct_excessive_bools,
clippy::too_many_lines,
clippy::type_repetition_in_bounds,
clippy::wildcard_imports
)]

Expand Down
Loading

0 comments on commit bf1ae4b

Please sign in to comment.