Skip to content

chore(deps): update module github.com/ckaznocha/intrange to v0.3.0 #227

chore(deps): update module github.com/ckaznocha/intrange to v0.3.0

chore(deps): update module github.com/ckaznocha/intrange to v0.3.0 #227

Workflow file for this run

name: Go Test
on:
push:
branches:
- 4.x
pull_request:
branches:
- 4.x
env:
GOPROXY: "https://proxy.golang.org"
jobs:
test:
name: "go test"
strategy:
matrix:
go-version: [ 1.22.x, 1.23.x ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 6379:6379
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
cache-dependency-path: "**/go.sum"
- run: go version
- name: Run tests
run: make test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}