Skip to content

Commit 2d85594

Browse files
committed
Upgrade go version and fix test launch config
1 parent 8ff8fea commit 2d85594

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
bin
2+
debug*
23
__debug*
34
.DS_Store
45
*.tar.gz

.vscode/launch.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313
"type": "go",
1414
"request": "launch",
1515
"mode": "test",
16-
"program": "${workspaceRoot}/tests/main_test.go",
17-
"env": {},
18-
"showLog": true
19-
}
16+
"program": "${workspaceFolder}/tests",
17+
"args": [
18+
"-test.count=1",
19+
"-test.v",
20+
],
21+
},
2022
]
2123
}

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module github.com/MicroFish91/portfolio-instruments-api
22

3-
go 1.21.5
4-
toolchain go1.24.1
3+
go 1.25.4
54

65
require (
76
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible

0 commit comments

Comments
 (0)