From cf520c180a1158379fc24cb01428a2a4008c606d Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Tue, 9 Jan 2024 17:21:40 -0800 Subject: [PATCH] Rename Rust format job --- .github/workflows/lint-format.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint-format.yml b/.github/workflows/lint-format.yml index 7af779b8..6cf26fcf 100644 --- a/.github/workflows/lint-format.yml +++ b/.github/workflows/lint-format.yml @@ -76,12 +76,11 @@ jobs: - name: Run clang-tidy run: wpiformat -no-format -tidy-all -compile-commands=build -tidy-extra-args std=c++20 -vv - rustfmt: - name: "rustfmt" + format-rust: + name: "Format Rust" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Run rustfmt working-directory: rust - run: cargo fmt + run: cargo fmt --check