mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
Add clippy for sound-converter
This commit is contained in:
parent
33e7106c00
commit
2d948d894a
3
.github/workflows/rust.yml
vendored
3
.github/workflows/rust.yml
vendored
|
@ -38,6 +38,9 @@ jobs:
|
|||
- name: Run Clippy on agb image converter
|
||||
working-directory: agb-image-converter
|
||||
run: cargo clippy --verbose
|
||||
- name: Run Clippy on agb sound converter
|
||||
working-directory: agb-sound-converter
|
||||
run: cargo clippy --verbose
|
||||
- name: Run Clippy on agb macros
|
||||
working-directory: agb-macros
|
||||
run: cargo clippy --verbose
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
use hound;
|
||||
use proc_macro::TokenStream;
|
||||
use quote::quote;
|
||||
use siphasher::sip::SipHasher;
|
||||
|
@ -58,7 +57,6 @@ pub fn include_wav(input: TokenStream) -> TokenStream {
|
|||
|
||||
out_file_path
|
||||
}
|
||||
.clone()
|
||||
.canonicalize()
|
||||
.expect("Failed to canonicalize");
|
||||
|
||||
|
|
Loading…
Reference in a new issue