Change summary
.github/workflows/compare_perf.yml | 3 +++
tooling/xtask/src/tasks/workflows/compare_perf.rs | 3 ++-
2 files changed, 5 insertions(+), 1 deletion(-)
Detailed changes
@@ -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}
@@ -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()),
)
}