From 4ea909bfc2422a8071821685c61d9adffdff6d4d Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 15 Apr 2024 21:16:40 -0500 Subject: [PATCH] Use the larger runner for Windows clippy runs (#3044) Running clippy can apparently be longer than the tests in https://github.com/astral-sh/uv/pull/3040 --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5dd050844..0e32028bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,12 +40,16 @@ jobs: run: pipx run ruff check . cargo-clippy: - name: "cargo clippy" strategy: matrix: - os: [ubuntu-latest, windows-latest] + include: + - os: "ubuntu" + runner: "ubuntu-latest" + - os: "windows" + runner: "windows-latest-large" fail-fast: false - runs-on: ${{ matrix.os }} + runs-on: ["${{ matrix.runner }}"] + name: "cargo clippy | ${{ matrix.os }}" steps: - uses: actions/checkout@v4 - name: "Install Rust toolchain"