diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..6ae465c0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,34 @@ +name: Go +on: [push] +jobs: + + build: + name: Build + runs-on: ubuntu-latest + strategy: + matrix: + goVer: [1.11, 1.12, 1.13] + + steps: + - name: Set up Go ${{ matrix.goVer }} + uses: actions/setup-go@v1 + with: + go-version: ${{ matrix.goVer }} + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + go get gopkg.in/check.v1 + + - name: Build + run: go build -v . + + - name: Format + run: diff -u <(echo -n) <(gofmt -d .) + + - name: Test + run: go test -v ./... diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e733edf6..00000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: go -sudo: false - -go: - - "1.10" - - 1.11 - - 1.12 - - 1.13 - - tip - -install: - - go get -d -v ./... && go build -v ./... - - go get gopkg.in/check.v1 - - go get github.com/stretchr/testify - -script: - - diff -u <(echo -n) <(gofmt -d .) - - go test -v ./...