fix deadlock when GetChannelMediumOptions is used (#404) #1816
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: build | |
on: [push, pull_request] | |
jobs: | |
golangci: | |
name: Lint | |
runs-on: ubuntu-latest | |
# Prevent duplicate builds on internal PRs. | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.x' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.58.0 | |
args: --timeout 3m0s | |
build: | |
name: Test with Go ${{ matrix.go-version }} Redis ${{ matrix.redis-version }} | |
runs-on: ubuntu-latest | |
# Prevent duplicate builds on internal PRs. | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
strategy: | |
matrix: | |
go-version: ["1.21", "1.22"] | |
redis-version: [6, 7] | |
steps: | |
- name: Install Go stable version | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Start redis | |
env: | |
REDIS_VERSION: ${{ matrix.redis-version }} | |
run: docker compose up -d --wait | |
- name: Test | |
run: go test -v -race -tags integration -coverprofile=coverage.out $(go list ./... | grep -v /_examples/) | |
- name: Upload code coverage to codecov | |
if: matrix.go-version == '1.22' && matrix.redis-version == 7 | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.out | |
token: ${{ secrets.CODECOV_TOKEN }} |