From 01e2f428086b99a9582f131a3f3722d40fe05684 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Sat, 15 Apr 2023 12:22:35 +0300 Subject: [PATCH] Disable cargo doc checking --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b382c1196..7ce6bf29a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,6 +144,9 @@ jobs: key: cargo-${{ github.job }}-${{ matrix.name }}-${{ hashFiles('**/Cargo.lock') }} - name: cargo doc + # Disable cargo doc checking for now, `NSEnumerator2<'a, T>` is broken + # on current nightly. + if: false run: cargo doc --no-deps --document-private-items ${{ matrix.args }} - name: cargo clippy