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
235 B
CUE
18 lines
235 B
CUE
package go
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"universe.dagger.io/go"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
actions: tests: container: {
|
|
_source: dagger.#Scratch & {}
|
|
|
|
simple: go.#Container & {
|
|
source: _source
|
|
command: args: ["version"]
|
|
}
|
|
}
|
|
}
|