Skip to content

fix(deps): update module github.com/twmb/franz-go to v1.18.0 #94

fix(deps): update module github.com/twmb/franz-go to v1.18.0

fix(deps): update module github.com/twmb/franz-go to v1.18.0 #94

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
go-version: [1.16.x,1.17.x]
runs-on: ubuntu-latest
services:
zookeeper:
image: wurstmeister/zookeeper:latest
ports:
- 2181:2181
kafka:
image: wurstmeister/kafka:latest
ports:
- 9092:9092
env:
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_CREATE_TOPICS: "test:1:1,trace:1:1,example:1:1,foo:1:1,bar:1:1"
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/cache@v2
id: cache-go-mod
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('go.mod') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}
- name: Environment Variables from Dotenv
uses: c-py/action-dotenv-to-setenv@v3
- name: Build
if: steps.cache-go-mod.outputs.cache-hit != 'true'
run: go build -v ./...
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.txt
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.41
args: --disable errcheck --timeout 5m0s
only-new-issues: true