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