From 73a896e62c3400a8f5eb4337225c95287be621cb Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 27 Apr 2021 13:08:57 -0400 Subject: [PATCH] ci: Fix GH action for rustfmt Since we now have a toplevel workspace, just use that. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 42eaac83..6a867d2c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,4 +24,4 @@ jobs: default: true components: rustfmt, clippy - name: cargo fmt (check) - run: cd tests/inst && cargo fmt -- --check -l + run: cargo fmt -- --check -l