Skip to content

Commit

Permalink
ci: add clippy check without all features (#900)
Browse files Browse the repository at this point in the history
  • Loading branch information
hal3e committed Mar 23, 2023
1 parent b5d146d commit ca327ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
RUST_VERSION="${{ env.RUST_VERSION }}"
echo "Comparing minimum supported toolchain ($MIN_VERSION) with ci toolchain (RUST_VERSION)"
test "$MIN_VERSION" == "$RUST_VERSION"
# Ensure workspace is publishable
publish-crates-check:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -157,6 +157,9 @@ jobs:
include:
- cargo_command: fmt
args: --all --verbose -- --check
- cargo_command: clippy
args: --all-targets
download_sway_artifacts: sway-examples
- cargo_command: clippy
args: --all-targets --all-features
download_sway_artifacts: sway-examples-w-type-paths
Expand Down
2 changes: 1 addition & 1 deletion packages/fuels-test-helpers/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use tokio::{process::Command, sync::oneshot};

use crate::utils::{into_coin_configs, into_message_configs};

#[derive(Clone, Copy, Debug)]
#[derive(Clone, Debug)]
pub struct Config {
pub addr: SocketAddr,
pub utxo_validation: bool,
Expand Down

0 comments on commit ca327ed

Please sign in to comment.