Skip to content

feat: add TLS support to conncheck RedisProbe #122

feat: add TLS support to conncheck RedisProbe

feat: add TLS support to conncheck RedisProbe #122

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
tags: [ v* ] #trigger on tags start with v, eg v1.0.0
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
golint:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: 'v1.64.5'
args: --timeout=10m
concurrency:
group: yatai-common-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true