mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-28 16:06:32 +01:00
Bumps [github.com/crazy-max/gohealthchecks](https://github.com/crazy-max/gohealthchecks) from 0.4.1 to 0.5.0. - [Release notes](https://github.com/crazy-max/gohealthchecks/releases) - [Commits](https://github.com/crazy-max/gohealthchecks/compare/v0.4.1...v0.5.0) --- updated-dependencies: - dependency-name: github.com/crazy-max/gohealthchecks dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
320 B
HCL
25 lines
320 B
HCL
variable "GO_VERSION" {
|
|
default = null
|
|
}
|
|
|
|
variable "DESTDIR" {
|
|
default = "./bin"
|
|
}
|
|
|
|
group "default" {
|
|
targets = ["test"]
|
|
}
|
|
|
|
target "test" {
|
|
target = "test-coverage"
|
|
output = ["${DESTDIR}/coverage"]
|
|
args = {
|
|
GO_VERSION = GO_VERSION
|
|
}
|
|
}
|
|
|
|
target "lint" {
|
|
target = "lint"
|
|
output = ["type=cacheonly"]
|
|
}
|