Skip to content

Commit

Permalink
Drop Windows OS from CI
Browse files Browse the repository at this point in the history
Widnows was not ever explicitly supported by the author
and causes troubles on CI action runs. Those we drop it
as redundant.
  • Loading branch information
Pavlo Strokov committed Aug 1, 2022
1 parent 192bb81 commit a7c9e28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
goos: [linux, darwin, windows]
goos: [linux, darwin]
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
go-version: [1.16.x, 1.17.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
Expand Down

0 comments on commit a7c9e28

Please sign in to comment.