Skip to content

chore: update readme for better docker instructions #43

chore: update readme for better docker instructions

chore: update readme for better docker instructions #43

Workflow file for this run

name: Go
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build-and-unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.25"
- name: Build
run: make build
- name: Test
run: make test