-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e201d1
commit eb16282
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 | ||
# Hack for Rust 1.80 - type inference went crazy and didn't allow to build a library | ||
- run: rustup default 1.79.0 | ||
# Hack for Rust 1.79 - rustfmt is just not there? | ||
- run: rustup component add rustfmt | ||
- run: cargo fmt --check | ||
|
||
clippy: | ||
|
@@ -41,8 +41,8 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 | ||
# Hack for Rust 1.80 - type inference went crazy and didn't allow to build a library | ||
- run: rustup default 1.79.0 | ||
# Hack for Rust 1.79 - clippy is just not there? | ||
- run: rustup component add clippy | ||
- run: cargo lint | ||
|
||
typos: | ||
|