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
This commit is contained in:
Zanie Blue
2024-04-15 21:16:40 -05:00
committed by GitHub
parent 2d95ca4b83
commit 4ea909bfc2
+7 -3
View File
@@ -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"