diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40a32bd7..30493b47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,9 @@ jobs: steps: - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable + with: + toolchain: stable + components: clippy - uses: Swatinem/rust-cache@v2 # Lint diff --git a/autometrics/tests/compilation/error_locus/fail/report_original_line.stderr b/autometrics/tests/compilation/error_locus/fail/report_original_line.stderr index 317e5a82..746f1df0 100644 --- a/autometrics/tests/compilation/error_locus/fail/report_original_line.stderr +++ b/autometrics/tests/compilation/error_locus/fail/report_original_line.stderr @@ -6,5 +6,5 @@ error[E0596]: cannot borrow `contents` as mutable, as it is not declared as muta | help: consider changing this to be mutable | -8 | let mut contents: Vec = Vec::new(); + 8 | let mut contents: Vec = Vec::new(); | +++