File tree Expand file tree Collapse file tree 5 files changed +29
-4
lines changed
Expand file tree Collapse file tree 5 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 2424 - uses : dtolnay/rust-toolchain@master
2525 # Need to specify @master above to work with toolchain var
2626 with :
27- toolchain : 1.83 .0
27+ toolchain : 1.86 .0
2828 - uses : Swatinem/rust-cache@v2
2929 with :
3030 cache-on-failure : true
Original file line number Diff line number Diff line change 11/target
22.env
3+
4+ # macOS
5+ .DS_Store
Original file line number Diff line number Diff line change 11[package ]
22name = " TODO"
33version = " 0.1.0"
4- edition = " 2021 "
4+ edition = " 2024 "
55license = " MIT"
6- # rust-version = "1.83"
76exclude = [" .github/" ]
87repository = " TODO"
98
Original file line number Diff line number Diff line change 1+ set shell := [" bash" , " -cu" ]
2+ set dotenv-load := true
3+
4+ # display a help message about available commands
5+ default :
6+ @ just --list --unsorted
7+
8+
9+ # run all recipes required to pass CI workflows
10+ ci :
11+ @ just fmt lint test
12+
13+ # run unit tests
14+ test :
15+ cargo nextest run --workspace -E " kind(lib) | kind(bin) | kind(proc-macro)"
16+
17+ # run collection of clippy lints
18+ lint :
19+ RUSTFLAGS=" -D warnings" cargo clippy --examples --tests --benches --all-features --locked
20+
21+ # format the code using the nightly rustfmt (as we use some nightly lints)
22+ fmt :
23+ cargo + nightly fmt --all
Original file line number Diff line number Diff line change 11[toolchain ]
22channel = " stable"
3- version = " 1.83 .0"
3+ version = " 1.86 .0"
You can’t perform that action at this time.
0 commit comments