Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]
os: [ubuntu-22.04, macos-12]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dmcgowan Why was the windows linter removed?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Throwing the formatting error. If you have any ideas about it, we can re-enable


steps:
- uses: actions/setup-go@v4
Expand Down Expand Up @@ -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:
Expand Down