Skip to content

fix(deps): update module github.com/confluentinc/confluent-kafka-go/v… #9409

fix(deps): update module github.com/confluentinc/confluent-kafka-go/v…

fix(deps): update module github.com/confluentinc/confluent-kafka-go/v… #9409

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
check-links:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
- uses: lycheeverse/lychee-action@v1.10.0
id: lychee
with:
args: >-
-v -n "*.md" "**/*.md"
--exclude "https://ingest.us0.signalfx.com.*"
--exclude "http://localhost*"
- name: fail for link errors
run: exit ${{ steps.lychee.outputs.exit_code }}
goyek:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
run-script: ./goyek.sh -v ci
- os: windows-2022
run-script: .\goyek.ps1 -v -skip-docker ci
- os: macos-14
run-script: ./goyek.sh -v -skip-docker ci
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-go@v5.0.2
with:
go-version: '1.23'
check-latest: true
- run: ${{ matrix.run-script }}
- uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
file: ./coverage.out
flags: ${{ runner.os }}
compatibility-test:
strategy:
matrix:
go-version:
- '1.22'
- '1.23'
os: [ubuntu-20.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-go@v5.0.2
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- run: make test-short
compatibility-check:
runs-on: ubuntu-22.04
if: ${{ always() }}
needs: [compatibility-test]
steps:
- name: Test if compatibility-test passed
run: |
echo ${{ needs.compatibility-test.result }}
test ${{ needs.compatibility-test.result }} == "success"