From 16e4d1ca0511f34065736bc5c669b7d69463be47 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Thu, 12 Sep 2024 14:28:11 -0400 Subject: [PATCH] github actions: change lints to use fmt-ci target Signed-off-by: Bryan Gurney --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ac7349..381c470 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,11 +59,7 @@ jobs: run: sudo apt-get install llvm-dev libclang-dev clang - name: Run cargo fmt - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --all -- --check - + run: make -f Makefile fmt-ci - name: Run cargo clippy run: make -f Makefile clippy