mirror of
https://github.com/crazy-max/diun.git
synced 2025-05-14 03:12:18 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
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>
24 lines
320 B
HCL
24 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"]
|
|
}
|