mirror of https://github.com/go-redis/redis.git
36 lines
674 B
YAML
36 lines
674 B
YAML
|
name: Go
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: build
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
go-version: [1.15.x, 1.16.x]
|
||
|
|
||
|
services:
|
||
|
redis:
|
||
|
image: redis
|
||
|
options: >-
|
||
|
--health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
||
|
ports:
|
||
|
- 6379:6379
|
||
|
|
||
|
steps:
|
||
|
- name: Set up ${{ matrix.go-version }}
|
||
|
uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: ${{ matrix.go-version }}
|
||
|
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Test
|
||
|
run: make test
|