Skip to content

Commit

Permalink
migrate to github actions (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
dschaller authored and jonathanburns committed Oct 24, 2019
1 parent 28b25d2 commit 7299c49
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
go-version: [1.10]
steps:
- uses: actions/checkout@v1
- name: Set up Go@${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: end-to-end
run: make end2end

0 comments on commit 7299c49

Please sign in to comment.