Skip to content

Commit

Permalink
refactor: Run cargo check instead of build
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Oct 29, 2024
1 parent 2e06682 commit 00e3393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fn check(workspace: &Path, chip: Chip, all_combinations: bool) -> Result<()> {

// Ensure that the generated project builds without errors:
Command::new("cargo")
.args(["build", "--release"])
.args(["check", "--release"])
.current_dir(project_path.join(PROJECT_NAME))
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
Expand Down

0 comments on commit 00e3393

Please sign in to comment.