Create webui dist directory in test workflow

This commit is contained in:
2025-07-26 16:41:09 +02:00
parent 427ea7fbd9
commit e7d95e934c
2 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,9 @@ jobs:
with:
go-version: "1.24"
cache: true
- name: Create empty webui dist directory
run: mkdir -p webui/dist && touch webui/dist/.gitkeep
- name: Run Tests
run: go test -tags=test ./... -v
run: go test ./... -v
- name: Run Tests with Race Detector
run: go test -tags=test -race ./... -v
run: go test -race ./... -v

View File

@@ -1,5 +1,3 @@
//go:build !test
package webui
import (