Skip to content

Commit

Permalink
run tests on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
bendrucker committed May 28, 2020
1 parent 6e1472c commit c8f90e5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

on: [push, pull_request]
name: tests
jobs:
test:
runs-on: macos-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.14.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...

0 comments on commit c8f90e5

Please sign in to comment.