We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66ebd5e + 8498306 commit b4f6b4dCopy full SHA for b4f6b4d
.github/workflows/ci.yml
@@ -0,0 +1,16 @@
1
+name: CI
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ build-go:
6
+ name: Default build
7
+ strategy:
8
+ matrix:
9
+ go: ['1.12.x', '1.13.x', '1.14.x']
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+ - uses: actions/setup-go@v1
14
+ with:
15
+ go-version: ${{ matrix.go }}
16
+ - run: script/cibuild
.travis.yml
script/cibuild
@@ -0,0 +1,3 @@
+#!/bin/sh -e
+go test ./...
0 commit comments