From 129b256bd216ea5f2fe6f6a78be0ec548c51c9ee Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Tue, 16 Jan 2024 17:19:10 -0800 Subject: [PATCH] Update linter to skip Windows Update test to run on Windows Signed-off-by: Derek McGowan --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d50a7d3..866b904 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: strategy: matrix: - os: [ubuntu-22.04, macos-12, windows-2022] + os: [ubuntu-22.04, macos-12] steps: - uses: actions/setup-go@v4 @@ -71,9 +71,13 @@ jobs: tests: name: Tests - runs-on: ubuntu-22.04 + runs-on: ${{ matrix.os }} timeout-minutes: 5 + strategy: + matrix: + os: [ubuntu-22.04, macos-12, windows-2022] + steps: - uses: actions/checkout@v2 with: