From 517af7d14eca74e42b52e2526ce7644e3f8d0a0a Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 17 Sep 2024 10:58:08 +0100 Subject: [PATCH] test: test the cargo fmt and clippy work --- .forgejo/workflows/test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 102f1a2..ba6e2c9 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -15,6 +15,16 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Format + uses: https://git.kemitix.net/kemitix/rust@next + with: + args: ${{ matrix.toolchain.name }} cargo fmt --check + + - name: Clippy + uses: https://git.kemitix.net/kemitix/rust@next + with: + args: ${{ matrix.toolchain.name }} cargo clippy + - name: Test uses: https://git.kemitix.net/kemitix/rust@next with: