Skip to content

Commit

Permalink
Merge 681e623 into b1641c0
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyLoy committed Nov 3, 2019
2 parents b1641c0 + 681e623 commit 1049c30
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Go
on: [push]
jobs:

test:
name: Test on go ${{ matrix.go_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_Version: ['1.13']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:

- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Test
run: go test -v

- name: vet
run: go vet

0 comments on commit 1049c30

Please sign in to comment.