Skip to content

Commit

Permalink
avoid warns
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddOnTop committed Nov 4, 2024
1 parent eda2d4b commit 876d31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspace/autogen/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fn main() {
let steps = vec![
Step::new("Checkout code").uses("actions/checkout@v4".to_string()),
Step::new("Setup rust").uses("actions-rust-lang/setup-rust-toolchain@v1".to_string()).with(with),
Step::new("Run tests").run("cargo test --all-features --workspace".to_string()),
Step::new("Run tests").run("RUSTFLAGS=\"-Awarnings\" cargo test --all-features --workspace".to_string()),
];

let job = Job::new("Run tests")
Expand Down

0 comments on commit 876d31c

Please sign in to comment.