Skip to content

fixup server + cleanup comments #6

fixup server + cleanup comments

fixup server + cleanup comments #6

name: Test and Build Docker Image
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Run tests
run: go test ./...
- name: Build Docker image
run: docker build .