Skip to content

Commit

Permalink
fix: install nightly for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyko committed Feb 2, 2024
1 parent 8d52952 commit 23f6b92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env_files = ["./.env"]
watch = true

[tasks.lint]
install_crate = "clippy"
install_crate = "clippy-nightly"
command = "cargo"
args = [
"+nightly",
Expand All @@ -25,7 +25,7 @@ args = [
]

[tasks.lint-ci]
install_crate = "clippy"
install_crate = "clippy-nightly"
command = "cargo"
args = [
"+nightly",
Expand All @@ -41,14 +41,14 @@ args = [
]

[tasks.format]
install_crate = "rustfmt"
install_crate = "rustfmt-nightly"
command = "cargo"
args = ["+nightly", "fmt", "--all"]

[tasks.fmt]
alias = "format"

[tasks.format-ci]
install_crate = "rustfmt"
install_crate = "rustfmt-nightly"
command = "cargo"
args = ["+nightly", "fmt", "--all", "--", "--check"]

0 comments on commit 23f6b92

Please sign in to comment.