feat: add Codecov upload workflows for backend and frontend coverage

This commit is contained in:
CI
2025-11-29 02:47:17 +00:00
parent 55199c752a
commit c925994aa3
7 changed files with 168 additions and 48 deletions

27
.vscode/settings.json vendored
View File

@@ -11,7 +11,30 @@
"buildFlags": ["-tags=ignore", "-mod=mod"],
"env": {
"GOWORK": "off",
"GOFLAGS": "-mod=mod"
}
"GOFLAGS": "-mod=mod",
"GOTOOLCHAIN": "none"
},
"directoryFilters": [
"-**/pkg/mod/**",
"-**/go/pkg/mod/**",
"-**/root/go/pkg/mod/**",
"-**/golang.org/toolchain@**"
]
},
"go.buildFlags": ["-tags=ignore", "-mod=mod"],
"go.toolsEnvVars": {
"GOWORK": "off",
"GOFLAGS": "-mod=mod",
"GOTOOLCHAIN": "none"
},
"files.watcherExclude": {
"**/pkg/mod/**": true,
"**/go/pkg/mod/**": true,
"**/root/go/pkg/mod/**": true
},
"search.exclude": {
"**/pkg/mod/**": true,
"**/go/pkg/mod/**": true,
"**/root/go/pkg/mod/**": true
}
}