ci: enable tests

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2021-01-13 18:21:56 -08:00
parent 49f0c0e149
commit cf390e9243
2 changed files with 8 additions and 0 deletions

View File

@ -32,3 +32,7 @@ jobs:
- name: Lint
run: |
make lint
- name: Test
run: |
make test

View File

@ -9,6 +9,10 @@ generate:
dagger: generate
go build -o ./cmd/dagger/ ./cmd/dagger/
.PHONY: test
test:
go test -v ./...
.PHONY: cuefmt
cuefmt:
@(cd ./dagger && cue fmt -s ./... && cue trim -s ./...)