Skip to content

Update quick start documentation and simplify startup with new start.… #2

Update quick start documentation and simplify startup with new start.…

Update quick start documentation and simplify startup with new start.… #2

Workflow file for this run

name: Go Tests
on:
push:
branches: [ main, master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Run unit tests
run: go test ./...