mirror of
https://github.com/dagger/dagger-for-github.git
synced 2026-01-01 05:00:21 +11:00
- Remove AGE key setup - Update README to use `dagger do` - Update tests to dagger 0.2 Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
17 lines
191 B
CUE
Executable file
Generated
17 lines
191 B
CUE
Executable file
Generated
package go
|
|
|
|
// Test a go package
|
|
#Test: {
|
|
// Package to test
|
|
package: *"." | string
|
|
|
|
#Container & {
|
|
command: {
|
|
args: [package]
|
|
flags: {
|
|
test: true
|
|
"-v": true
|
|
}
|
|
}
|
|
}
|
|
}
|