Skip to content

chore(deps): bump github.com/gomodule/redigo from 1.8.6 to 1.8.9 #29

chore(deps): bump github.com/gomodule/redigo from 1.8.6 to 1.8.9

chore(deps): bump github.com/gomodule/redigo from 1.8.6 to 1.8.9 #29

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
mysql:
image: mysql
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: test
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
postgres:
image: postgres
env:
POSTGRES_USER: root
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: test
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.17
- name: Test and generate coverage report
run: make test/cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
name: codecov-umbrella
files: ./main.cover.out
flags: unittests
fail_ci_if_error: true
verbose: true