mirror of
https://github.com/crazy-max/diun.git
synced 2024-12-22 19:38:28 +00:00
20 lines
240 B
HCL
20 lines
240 B
HCL
variable "GO_VERSION" {
|
|
default = "1.19"
|
|
}
|
|
|
|
target "_common" {
|
|
args = {
|
|
GO_VERSION = GO_VERSION
|
|
}
|
|
}
|
|
|
|
group "default" {
|
|
targets = ["test"]
|
|
}
|
|
|
|
target "test" {
|
|
inherits = ["_common"]
|
|
target = "test-coverage"
|
|
output = ["."]
|
|
}
|