Skip to content

Commit

Permalink
Update goissue477.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gowridurgad authored Jun 7, 2024
1 parent 1ed1516 commit 3808f94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/goissue477.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
strategy:
matrix:
go: ['1.18']
os: ['linux']
os: ['windows']
arch: ['amd64']
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: 'Test on [linux] arch [amd64]'
if: ${{ matrix.os == 'linux' && contains(fromJson('["amd64"]'), matrix.arch) }}
- name: 'Test on [windows] arch [amd64]'
if: ${{ matrix.os == 'windows' && contains(fromJson('["amd64"]'), matrix.arch) }}
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
Expand Down

0 comments on commit 3808f94

Please sign in to comment.