Add build manifest with build and lint steps

This commit is contained in:
Conrad Hoffmann 2022-05-20 09:55:51 +02:00
parent 21514ae6b0
commit e349c22ef3

11
.build.yml Normal file
View File

@ -0,0 +1,11 @@
image: alpine/edge
packages:
- go
tasks:
- build: |
cd tokidoki/cmd/tokidoki
go build
- lint: |
cd tokidoki
go fmt ./...
git diff --exit-code