Skip to content

Commit 38f5369

Browse files
committed
Limit doc jobs to only Ubuntu.
1 parent e94ff71 commit 38f5369

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,9 @@ jobs:
214214

215215
doc:
216216
name: cargo doc
217-
runs-on: ${{ matrix.os }}
218-
strategy:
219-
matrix:
220-
os: [windows-latest, macos-14, ubuntu-latest]
217+
# NOTE: We don't have any platform specific docs in this workspace, so we only run on Ubuntu.
218+
# If we get per-platform docs (win/macos/linux/wasm32/..) then doc jobs should match that.
219+
runs-on: ubuntu-latest
221220
steps:
222221
- uses: actions/checkout@v4
223222

0 commit comments

Comments
 (0)