Skip to content

Commit ad7b314

Browse files
authored
change os (#32)
1 parent a78cf0c commit ad7b314

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/go.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,15 @@ jobs:
3333
3434
test:
3535
name: Tests
36-
runs-on: ubuntu-latest
37-
needs: supportedVersions
38-
3936
strategy:
4037
matrix:
4138
go_version: ${{ fromJSON(needs.supportedVersions.outputs.supported_versions) }}
39+
os: [ubuntu-latest, macos-latest, windows-latest] # Matrix for OS
40+
41+
runs-on: ${{ matrix.os }}
42+
needs: supportedVersions
43+
44+
4245

4346
steps:
4447
- name: Checkout code

0 commit comments

Comments
 (0)