2021-01-30 14:59:28 +08:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest]
|
2021-11-06 07:52:54 +08:00
|
|
|
go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x]
|
2021-01-30 14:59:28 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
services:
|
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: go build -v ./...
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
|
|
|
|
- name: Benchmark Test
|
|
|
|
run: go test -run=^$ -bench=. -loglevel=debug ./...
|
|
|
|
|
|
|
|
- name: Upload coverage to Codecov
|
|
|
|
uses: codecov/codecov-action@v1
|