Skip to content

docs: Update README.md #2

docs: Update README.md

docs: Update README.md #2

Workflow file for this run

name: build consumer
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './consumer/go.mod'
- name: Build
working-directory: ./consumer
run: go build -v -o ./server ./cmd/server
- name: Test
working-directory: ./consumer
run: go test -v ./cmd/server