Skip to content

Commit

Permalink
adding github actions (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
castlemilk authored and spacetj committed Dec 7, 2019
1 parent d61391c commit 201dcb0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.12.x, 1.13.x]
platform: [ubuntu-latest, 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: Build
run: go build

0 comments on commit 201dcb0

Please sign in to comment.