Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<u32> = Vec::new();
8 | let mut contents: Vec<u32> = Vec::new();
| +++
Loading