File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 29
29
- uses : actions/checkout@v3
30
30
- uses : dtolnay/rust-toolchain@stable
31
31
# Use the modern stable Rust, not the MSRV in rust-toolchain.toml
32
- - run : rustup override set stable
32
+ - run : rustup override set stable && cargo update
33
+ - run : cargo --version
33
34
- run : cargo test --all-features
34
35
35
36
rustfmt :
38
39
- uses : actions/checkout@v3
39
40
- uses : dtolnay/rust-toolchain@stable
40
41
# Use the modern stable Rust, not the MSRV in rust-toolchain.toml
41
- - run : rustup override set stable
42
+ - run : rustup override set stable && cargo update
42
43
- run : cargo fmt --all -- --check
43
44
44
45
clippy :
49
50
with :
50
51
components : clippy
51
52
# Use the modern stable Rust, not the MSRV in rust-toolchain.toml
52
- - run : rustup override set stable
53
+ - run : rustup override set stable && cargo update
53
54
- run : cargo clippy --all-features -- -D warnings
54
55
55
56
# Test no_std build-only
64
65
targets : thumbv7em-none-eabi
65
66
- uses : taiki-e/install-action@cargo-hack
66
67
# Use the modern stable Rust, not the MSRV in rust-toolchain.toml
67
- - run : rustup override set stable
68
+ - run : rustup override set stable && cargo update
68
69
# No default features build
69
70
- name : no_std / no feat
70
71
run : cargo build --target thumbv7em-none-eabi --release --no-default-features
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ impl core::fmt::Display for AuthError {
71
71
///
72
72
/// * `data` - The input data to the operation.
73
73
/// * `more` - For streaming purposes. Specifies whether you're trying to add more input / get more
74
- /// output to/from the previous operation. For example:
74
+ /// output to/from the previous operation. For example:
75
75
///
76
76
/// ```rust
77
77
/// # extern crate strobe_rs;
You can’t perform that action at this time.
0 commit comments