From b49492b1b245ef071746d20ca96e60f682e7ad9c Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 21 Jul 2024 13:16:29 +0700 Subject: [PATCH] ci: Only run docs check on Linux There aren't any platform-specific docs in this crate, so we can just run this once. This matches Vello. --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9944079..d7028aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -153,10 +153,9 @@ jobs: docs: name: cargo doc - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest, macos-latest, ubuntu-latest] + # NOTE: We don't have any platform specific docs in this workspace, so we only run on Ubuntu. + # If we get per-platform docs (win/macos/linux/wasm32/..) then doc jobs should match that. + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4