File tree Expand file tree Collapse file tree 5 files changed +11
-14
lines changed
Expand file tree Collapse file tree 5 files changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,10 @@ jobs:
2121 cache : true
2222
2323 - name : Build
24- run : go build -v ./config/... ./handlers/... ./module/ ...
24+ run : go build -v ./...
2525
26- - name : Test
27- run : |
28- go test -v ./config/...
29- go test -v ./handlers/...
30- go test -v ./module/...
31- go test -v ui_server_test.go
26+ - name : Test config package
27+ run : go test -v ./config/...
28+
29+ - name : Test module package
30+ run : go test -v ./module/...
File renamed without changes.
Original file line number Diff line number Diff line change 11module github.com/GoCodeAlone/workflow
22
3- go 1.24.1
3+ go 1.23.5
4+
5+ toolchain go1.23.9
46
57require (
68 github.com/GoCodeAlone/modular v1.2.2
Original file line number Diff line number Diff line change 11github.com/BurntSushi/toml v1.2.1 /go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ =
22github.com/BurntSushi/toml v1.5.0 h1:W5quZX/G/csjUnuI8SUYlsHs9M38FC7znL0lIO+DvMg =
33github.com/BurntSushi/toml v1.5.0 /go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho =
4- github.com/GoCodeAlone/modular v1.2.1 h1:zSk+jIVZX7IOGitq7g6ZqycgCOTIpIbBoWBcLdexpm8 =
5- github.com/GoCodeAlone/modular v1.2.1 /go.mod h1:LYqrbw3/LkxJcQdQI+8fADVf4s73m31FRvX2ekpI/SA =
64github.com/GoCodeAlone/modular v1.2.2 h1:gmXZggBD9xkhkmobtctVnWapVvUywbyFqWMt+sd1Smo =
75github.com/GoCodeAlone/modular v1.2.2 /go.mod h1:LYqrbw3/LkxJcQdQI+8fADVf4s73m31FRvX2ekpI/SA =
86github.com/creack/pty v1.1.9 /go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E =
Original file line number Diff line number Diff line change 1- package main
1+ package module
22
33import (
44 "context"
@@ -7,13 +7,11 @@ import (
77 "net/http/httptest"
88 "testing"
99 "time"
10-
11- "github.com/GoCodeAlone/workflow/module"
1210)
1311
1412func TestUIServer (t * testing.T ) {
1513 // Create a UI server
16- uiServer := module . NewUIServer ("test-ui" , ":8080" , nil )
14+ uiServer := NewUIServer ("test-ui" , ":8080" , nil )
1715
1816 // Start the server
1917 ctx , cancel := context .WithTimeout (context .Background (), 5 * time .Second )
You can’t perform that action at this time.
0 commit comments