Skip to content

Commit

Permalink
Merge pull request #1 from ojizero/test-matrix
Browse files Browse the repository at this point in the history
Use matrix to test on windows and macos as well as linux
  • Loading branch information
ojizero committed Apr 26, 2020
2 parents 7cb38db + 369dad0 commit 626dd44
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ on:
- master
jobs:
test-package:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
name: Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
Expand Down

0 comments on commit 626dd44

Please sign in to comment.