Skip to content

Commit 129b256

Browse files
committed
Update linter to skip Windows
Update test to run on Windows Signed-off-by: Derek McGowan <[email protected]>
1 parent 18e3da6 commit 129b256

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
strategy:
3131
matrix:
32-
os: [ubuntu-22.04, macos-12, windows-2022]
32+
os: [ubuntu-22.04, macos-12]
3333

3434
steps:
3535
- uses: actions/setup-go@v4
@@ -71,9 +71,13 @@ jobs:
7171

7272
tests:
7373
name: Tests
74-
runs-on: ubuntu-22.04
74+
runs-on: ${{ matrix.os }}
7575
timeout-minutes: 5
7676

77+
strategy:
78+
matrix:
79+
os: [ubuntu-22.04, macos-12, windows-2022]
80+
7781
steps:
7882
- uses: actions/checkout@v2
7983
with:

0 commit comments

Comments
 (0)