From 2473d3ce34ab16aea42478c6c02cc9f5f3bdf05b Mon Sep 17 00:00:00 2001 From: Stavros Date: Mon, 10 Feb 2025 18:24:16 +0200 Subject: [PATCH] tests: add simple dist folder --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30c4cae..79d4576 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,10 @@ jobs: with: go-version: "^1.23.2" + - name: Create simple UI for testing + run: | + mkdir -p internal/assets/dist + echo "Hello, World!" > internal/assets/dist/index.html + - name: Run tests run: go test -v ./...