Skip to content

Commit

Permalink
Merge pull request #58 from thaJeztah/gh_actions
Browse files Browse the repository at this point in the history
Add GH Actions
  • Loading branch information
dmcgowan committed Nov 2, 2020
2 parents f08b7a3 + ab23730 commit bb424e3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,18 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
platform: [ubuntu-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@v2
- name: Test
run: go test -v ./...

0 comments on commit bb424e3

Please sign in to comment.