From c1ae41b100458411f5c4a3791f187511b7b3936a Mon Sep 17 00:00:00 2001 From: zawakin Date: Mon, 29 Jun 2026 20:46:50 +0900 Subject: [PATCH] ci: drop windows-latest from the test matrix The windows-latest runner dominates CI wall-clock for little signal on a CLI developed and shipped primarily for macOS/Linux. Keep ubuntu + macos. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35b6801..8f5c4c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable