Skip to content

Commit bdae545

Browse files
committed
Run tests across different OS's
1 parent 08e28c4 commit bdae545

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/push.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ on: [push, pull_request]
33
name: CI
44
jobs:
55
test:
6-
runs-on: ubuntu-latest
76
strategy:
87
matrix:
9-
go: [ '1.15' ]
10-
name: Go ${{ matrix.go }} test
8+
go: [ '1.13', '1.15' ]
9+
os: [ ubuntu-latest, macos-latest, windows-latest ]
10+
fail-fast: false
11+
12+
runs-on: ${{ matrix.os }}
13+
name: Test suite
14+
1115
steps:
1216
- uses: actions/checkout@v2
1317
- name: Setup go

0 commit comments

Comments
 (0)