From 2f13fe1c8d5a8d9b3e646b68528b1867b247b26d Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Thu, 11 Sep 2025 13:54:55 -0500 Subject: [PATCH] update ci --- .github/workflows/ci.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb38b64..00dc317 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,18 +59,6 @@ jobs: - name: Test with features ${{ matrix.features }} run: cargo test --features ${{ matrix.features }} --verbose - clippy: - name: Clippy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - with: - components: clippy - - uses: Swatinem/rust-cache@v2 - - name: Run clippy - run: cargo clippy --all-targets --all-features -- -D warnings - fmt: name: Rustfmt runs-on: ubuntu-latest @@ -81,15 +69,3 @@ jobs: components: rustfmt - name: Run rustfmt run: cargo fmt --all -- --check - - docs: - name: Docs - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - uses: Swatinem/rust-cache@v2 - - name: Check documentation - run: cargo doc --all-features --no-deps --document-private-items - env: - RUSTDOCFLAGS: -D warnings