Skip to content

rename to IBM/sarama ; go get -u ; go mod tidy #33

rename to IBM/sarama ; go get -u ; go mod tidy

rename to IBM/sarama ; go get -u ; go mod tidy #33

Workflow file for this run

name: Continuous Integration
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: kt Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.21
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Bring up containers
run: docker compose -f test-dependencies.yml up -d
- name: Test
run: make test