Skip to content

chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 (#40) #31

chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 (#40)

chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 (#40) #31

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
container: golang:1.21
services:
# Label used to access the service container
redis:
# Docker Hub image
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Test
run: make test
env:
REDIS_HOST: redis
REDIS_PORT: 6379