delete test cached redis speed #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |