From e27a1c998fe45db6b2b1a01a806a8398e9e3a1d3 Mon Sep 17 00:00:00 2001 From: laurent Date: Thu, 8 Dec 2022 20:31:12 +0000 Subject: [PATCH] Switch the windows CI to the 2019 version. --- .github/workflows/rust-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index c94c45a..254153d 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] + os: [ubuntu-latest, windows-2019, macOS-latest] rust: [stable, nightly] steps: - uses: actions/checkout@v2 @@ -26,7 +26,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] + os: [ubuntu-latest, windows-2019, macOS-latest] rust: [stable, nightly] steps: - uses: actions/checkout@v2 @@ -69,4 +69,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: clippy - args: -- -D warnings + args: --tests --examples --features=clap -- -D warnings