publisher: refactor to a generic sink interface #1
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: Raccoon Integration Test | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Docker | |
uses: docker-practice/actions-setup-docker@master | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.18" | |
- name: Copy integration config | |
run: cp .env.test .env | |
- name: Run Raccoon | |
run: make docker-run | |
- name: Invoking go test | |
run: INTEGTEST_BOOTSTRAP_SERVER=localhost:9094 INTEGTEST_HOST=localhost:8080 INTEGTEST_TOPIC_FORMAT="clickstream-%s-log" GRPC_SERVER_ADDR="localhost:8081" go test ./integration -v |