re-add kafka data source and fix duplicated subscription IDs #1225
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: ci | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
go: [ '1.19', '1.20' ] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^${{ matrix.go }} | |
id: go | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: CI | |
run: make ci | |
- name: Run tests under race detector | |
if: runner.os != 'Windows' # These are very slow on Windows, skip them | |
run: make test-race | |
lint: | |
name: Linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^1.20 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Run linters | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.51.1 | |
args: --timeout=3m | |
ci: | |
name: CI Success | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
needs: [test, lint] | |
steps: | |
- run: exit 1 | |
if: >- | |
${{ | |
contains(needs.*.result, 'failure') | |
|| contains(needs.*.result, 'cancelled') | |
}} |