Skip to content

Commit 9314258

Browse files
test: add smoke test
1 parent 48b9348 commit 9314258

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

application/config/config.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,8 @@ func initWorkflows(c *Config) error {
332332
}
333333

334334
err = localworkflows.InitCodeWorkflow(c.engine)
335+
336+
err = osflows.Init(c.engine)
335337
if err != nil {
336338
return err
337339
}

go.mod

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/snyk/snyk-ls
22

3-
go 1.24
3+
go 1.24.0
44

55
toolchain go1.24.6
66

@@ -33,17 +33,18 @@ require (
3333
github.com/snyk/cli-extension-os-flows v0.0.0-20251103100740-a301e85828b7
3434
github.com/snyk/code-client-go v1.24.4
3535
github.com/snyk/go-application-framework v0.0.0-20251105162737-084a7498cf0f
36+
github.com/snyk/cli-extension-os-flows v0.0.0-20251024084537-eeace0ff55c8
3637
github.com/sourcegraph/go-lsp v0.0.0-20240223163137-f80c5dd31dfd
3738
github.com/spf13/pflag v1.0.6
3839
github.com/stretchr/testify v1.10.0
3940
github.com/subosito/gotenv v1.6.0
4041
github.com/writeas/go-strip-markdown v2.0.1+incompatible
4142
go.lsp.dev/uri v0.3.0
4243
golang.org/x/exp v0.0.0-20250215185904-eff6e970281f
43-
golang.org/x/mod v0.24.0
44-
golang.org/x/net v0.38.0
44+
golang.org/x/mod v0.27.0
45+
golang.org/x/net v0.43.0
4546
golang.org/x/oauth2 v0.27.0
46-
golang.org/x/sync v0.13.0
47+
golang.org/x/sync v0.17.0
4748
)
4849

4950
require (
@@ -63,14 +64,19 @@ require (
6364
github.com/creachadair/mds v0.23.0 // indirect
6465
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
6566
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
67+
github.com/dlclark/regexp2 v1.11.4 // indirect
68+
github.com/dop251/goja v0.0.0-20251008123653-cf18d89f3cf6 // indirect
69+
github.com/dop251/goja_nodejs v0.0.0-20250409162600-f7acab6894b0 // indirect
6670
github.com/emirpasic/gods v1.18.1 // indirect
67-
github.com/fsnotify/fsnotify v1.8.0 // indirect
71+
github.com/fsnotify/fsnotify v1.9.0 // indirect
6872
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
6973
github.com/go-git/go-billy/v5 v5.6.2 // indirect
7074
github.com/go-ole/go-ole v1.2.6 // indirect
71-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
75+
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
76+
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
7277
github.com/gofrs/flock v0.12.1 // indirect
7378
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
79+
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
7480
github.com/hashicorp/go-uuid v1.0.3 // indirect
7581
github.com/hashicorp/go-version v1.7.0 // indirect
7682
github.com/hashicorp/logutils v1.0.0 // indirect
@@ -115,10 +121,10 @@ require (
115121
github.com/yusufpapurcu/wmi v1.2.4 // indirect
116122
go.uber.org/atomic v1.9.0 // indirect
117123
go.uber.org/multierr v1.9.0 // indirect
118-
golang.org/x/crypto v0.37.0 // indirect
119-
golang.org/x/sys v0.32.0 // indirect
120-
golang.org/x/text v0.24.0 // indirect
121-
golang.org/x/tools v0.31.0 // indirect
124+
golang.org/x/crypto v0.42.0 // indirect
125+
golang.org/x/sys v0.36.0 // indirect
126+
golang.org/x/text v0.29.0 // indirect
127+
golang.org/x/tools v0.36.0 // indirect
122128
google.golang.org/genproto/googleapis/rpc v0.0.0-20250409194420-de1ac958c67a // indirect
123129
gopkg.in/warnings.v0 v0.1.2 // indirect
124130
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)