From e31ec3e89e487146fdb1112755637552392432d4 Mon Sep 17 00:00:00 2001 From: SubProblem Date: Tue, 14 Apr 2026 16:34:34 +0400 Subject: [PATCH] add docker image build step to CI --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6701fbb..6ea51c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,4 +24,7 @@ jobs: run: go build -o tcplb . - name: Test - run: go test ./... \ No newline at end of file + run: go test ./... + + - name: Build Docker image + run: docker build -t tcp-lb . \ No newline at end of file