Skip to content

Commit

Permalink
ci: use stable rust version for clippy job
Browse files Browse the repository at this point in the history
  • Loading branch information
pacmanifold committed Mar 6, 2024
1 parent ced16f9 commit 06acbe5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ command = "cargo"
args = ["check"]

[tasks.clippy-check]
toolchain = "${NIGHTLY_VERSION}"
toolchain = "${RUST_VERSION}"
command = "cargo"
args = ["clippy","--all-features","--","-D","warnings"]
args = ["clippy","--features", "osmosis", "--features", "astroport", "--", "-D", "warnings"]
[tasks.clippy-fix]
toolchain = "${NIGHTLY_VERSION}"
toolchain = "${RUST_VERSION}"
command = "cargo"
args = ["clippy","--all-features", "--fix","--allow-staged", "--allow-dirty", "--","-D","warnings"]

Expand Down

0 comments on commit 06acbe5

Please sign in to comment.