From 90f7dea0e9b22bdeb357897416b8ac0bc8b480be Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Thu, 30 Oct 2025 17:29:57 -0600 Subject: [PATCH] More perf --- .github/workflows/compare_perf.yml | 3 +++ tooling/xtask/src/tasks/workflows/compare_perf.rs | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compare_perf.yml b/.github/workflows/compare_perf.yml index 3f30ff1ec54afb88bc27557c89d189a8e1e21dff..c9884c68f17ac21a42b2438eab1816229ef4bf56 100644 --- a/.github/workflows/compare_perf.yml +++ b/.github/workflows/compare_perf.yml @@ -11,3 +11,6 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: clean: false + - name: steps::cargo_fmt + run: cargo fmt --all -- --check + shell: bash -euxo pipefail {0} diff --git a/tooling/xtask/src/tasks/workflows/compare_perf.rs b/tooling/xtask/src/tasks/workflows/compare_perf.rs index b46a3bb0ca1329906a8f0445e55c4edf5059cb95..98d755881e74b7d68b613b4edda2345bdeaf2c28 100644 --- a/tooling/xtask/src/tasks/workflows/compare_perf.rs +++ b/tooling/xtask/src/tasks/workflows/compare_perf.rs @@ -17,6 +17,7 @@ pub fn run_perf() -> NamedJob { named::job( Job::default() .runs_on(runners::LINUX_SMALL) - .add_step(steps::checkout_repo()), + .add_step(steps::checkout_repo()) + .add_step(steps::cargo_fmt()), ) }