Skip to content

Commit

Permalink
ci: fmt all packages
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Oct 11, 2024
1 parent 9dee139 commit 9e9d61b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt -- --check
- run: cargo fmt --all -- --check

c:
name: C
Expand Down
5 changes: 2 additions & 3 deletions rftrace/build.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
use std::collections::HashSet;
use std::env;
use std::fs;
use std::path::{Path, PathBuf};
use std::process::{Command, Stdio};
use std::{env, fs};

fn build_backend() {
println!("Building Backend!");
Expand Down Expand Up @@ -85,7 +84,7 @@ fn main() {
if env::var_os("CARGO_FEATURE_STATICLIB").is_some() {
return;
}

build_backend();
}

Expand Down

0 comments on commit 9e9d61b

Please sign in to comment.