Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

switch ci to GH actions #508

Merged
merged 1 commit into from
Jan 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Run tests
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
GO111MODULE: on
jobs:
test:
strategy:
matrix:
go-version: [1.11.x, 1.15.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:

- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2

- name: Vet and build
run: |
go vet ./...
go build ./...

- name: Install tools
run: |
go install github.com/golang/mock/mockgen
GO111MODULE=off go get -u golang.org/x/lint/golint

- name: Run test scripts
run: |
./ci/check_go_fmt.sh
./ci/check_go_lint.sh
./ci/check_go_generate.sh
./ci/check_go_mod.sh
./ci/check_panic_handling.sh

- name: Run Go tests
run: go test -v ./...