Get marginally faster CI builds by removing cargo check, we're going to run Cargo test anyway (#431)

This commit is contained in:
Russell Cohen 2021-05-28 12:10:35 -04:00 committed by GitHub
parent 1b5453f8ab
commit 362e3440c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ open class RunExampleTask @javax.inject.Inject constructor() : Exec() {
}
}
tasks["test"].finalizedBy("cargoCheck", "cargoClippy", "cargoTest", "cargoDocs")
tasks["test"].finalizedBy("cargoClippy", "cargoTest", "cargoDocs")
tasks["clean"].doFirst {
delete("smithy-build.json")