Merge pull request #1596 from gitbutlerapp/remove-nightly-from-cranky

Remove nightly from cranky
This commit is contained in:
Nikita Galaiko 2023-11-14 10:04:01 +01:00 committed by GitHub
commit bb53a51742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -75,6 +75,4 @@ allow = [
"clippy::match_wildcard_for_single_variants",
"clippy::unnested_or_patterns",
"clippy::similar_names",
# TODO: fixme
"clippy::struct_field_names"
]

View File

@ -7,8 +7,7 @@ set -o pipefail
function rust() {
cargo fmt --check
cargo sort -c -w
# use nightly as long cranky is run in nightly on ci
cargo +nightly cranky --all-targets --all-features
cargo cranky --all-targets --all-features
cargo test
}