2887139bf7
- Improve #Container with a better docker.#Run integration - Supports concurrency caching in #Container - Simplify code maintainability and readability - Simplify binary export in #Build - Support multi binary building - External #Version management Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
18 lines
191 B
CUE
18 lines
191 B
CUE
package go
|
|
|
|
// Test a go package
|
|
#Test: {
|
|
// Package to test
|
|
package: *"." | string
|
|
|
|
#Container & {
|
|
command: {
|
|
args: [package]
|
|
flags: {
|
|
test: true
|
|
"-v": true
|
|
}
|
|
}
|
|
}
|
|
}
|