diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..dad2ee5 --- /dev/null +++ b/.build.yml @@ -0,0 +1,14 @@ +image: alpine/edge +packages: + - go +sources: + - https://git.sr.ht/~motiejus/undocker +tasks: + - test: | + cd undocker + go test -cover ./... + - build: | + cd undocker + CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build . +artifacts: + - undocker/undocker diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b34e5e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/undocker