From a661f047a643dcfa30110350b7517f55bf5698ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sun, 29 Jun 2025 14:07:16 +0200 Subject: [PATCH] Add formatting job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- .forgejo/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 00ee511..d926944 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -10,6 +10,16 @@ env: CARGO_TERM_COLOR: always jobs: + formatting: + name: hem - Formatting + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install Rust + uses: https://github.com/dtolnay/rust-toolchain@1.88 + with: + components: rustfmt + - run: cargo fmt --check build_and_test: name: hem - Build & Test runs-on: ubuntu-latest