Skip to content

Commit

Permalink
ci: lint & toolchain version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
crnbarr93 committed Jan 4, 2025
1 parent 7abe63c commit 37481b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
- run: rustup override set 1.75.0
- run: rustup target add wasm32-unknown-unknown
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 1
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
components: rustfmt, clippy
- uses: actions/cache@v3
with:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
fetch-depth: 1
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
- uses: actions/cache@v3
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion contracts/os/andromeda-kernel/src/testing/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ fn test_query_pending_packets(
)
.unwrap();

let pending_packets: PendingPacketResponse = from_json(&res).unwrap();
let pending_packets: PendingPacketResponse = from_json(res).unwrap();
assert_eq!(pending_packets.packets.len(), expected_count);

// Verify packets are from the correct channel if channel_id is specified
Expand Down

0 comments on commit 37481b0

Please sign in to comment.