Skip to content

Commit

Permalink
👷 Add GitHub Actions test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
momotaro98 committed Dec 29, 2019
1 parent 120d61f commit 7d42402
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.13.1]
platform: [macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}

steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v1

- name: Test
run: make test

0 comments on commit 7d42402

Please sign in to comment.