mirror of
https://github.com/dagger/dagger-for-github.git
synced 2025-12-31 12:49:46 +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>
21 lines
281 B
CUE
21 lines
281 B
CUE
package main
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
|
|
"universe.dagger.io/alpine"
|
|
"universe.dagger.io/bash"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
actions: test: {
|
|
image: alpine.#Build & {
|
|
packages: bash: {}
|
|
}
|
|
|
|
bash.#Run & {
|
|
input: image.output
|
|
script: contents: "echo Hello World!"
|
|
}
|
|
}
|
|
}
|