Bump github.com/redis/go-redis/v9 from 9.6.1 to 9.7.0 #4
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: Go | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' # Use the version of Go in your project | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Run Makefile 'test' target | |
run: make test | |
- name: Run Makefile 'all' target | |
run: make all | |