From a449e251b72d9bb60b24eb1bb94917965ceb5f53 Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Thu, 23 Nov 2023 16:15:24 +0200 Subject: [PATCH] ci: add windows and macos to clippy job --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 26732121..0fb259f5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -136,9 +136,10 @@ jobs: clippy: name: Clippy - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, macos-latest, windows-latest] rust: - stable steps: @@ -156,4 +157,3 @@ jobs: with: command: clippy args: --all-targets -- --deny warnings -