dagger-for-github/test/ci/main.cue
Andrea Luzzardi 24d6bfd692 update action to dagger 0.2
- Remove AGE key setup
- Update README to use `dagger do`
- Update tests to dagger 0.2

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2022-03-09 14:47:41 -08:00

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!"
}
}
}