Skip to content

delete test cached redis speed #5

delete test cached redis speed

delete test cached redis speed #5

Workflow file for this run

name: CI
on:
push:
branches: [ master, fix-makefile-help ] # FIXME revert to master only
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.17', '1.20', '1.21', '1.22' ]
name: Go ${{ matrix.go }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Cache redis server binary
id: cache-redis-server-binary
uses: actions/cache@v4
with:
path: integration/redis_src/redis-server
key: ${{ runner.os }}-redis-server-binary
- name: Test
run: make ci