Skip to content

fix(v3):remove context evaluation #131

fix(v3):remove context evaluation

fix(v3):remove context evaluation #131

Workflow file for this run

name: Go
on:
push:
branches: [v3]
pull_request:
branches: [v3]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [1.16.x, 1.17.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
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: make test