From 10904eb6c9ecf80e03a470135636ac43bf44c687 Mon Sep 17 00:00:00 2001 From: "Kyle J. Turpin" Date: Tue, 21 Jul 2026 20:30:31 -0500 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 24f4999..9e713b2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,25 +16,9 @@ jobs: runs-on: nix steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - with: - components: rustfmt - - run: cargo fmt -- --check - - clippy: - name: Lint - runs-on: nix - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - with: - components: clippy - - run: cargo clippy --all-targets --all-features -- -D warnings test: name: Tests runs-on: nix steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - run: cargo test --verbose