lens @ b6629e85bc4d77f43d2ddfe70505a25714018e65

feat: Add build process

To make sure that the project does not only compile on my machine.
 1diff --git a/.builds/alpine.yml b/.builds/alpine.yml
 2new file mode 100644
 3index 0000000000000000000000000000000000000000..62f398327ee37fc6194afc50a833f7c6cf01eda6
 4--- /dev/null
 5+++ b/.builds/alpine.yml
 6@@ -0,0 +1,22 @@
 7+image: alpine/edge
 8+packages:
 9+  - go
10+  - vips-dev
11+  - sassc
12+  - golangci-lint
13+sources:
14+  - https://git.sr.ht/~gabrielgio/img
15+tasks:
16+  - setup: |
17+      go install  github.com/valyala/quicktemplate/qtc@latest
18+      #  - lint: |
19+      #      cd img
20+      #      make lint
21+  - build: |
22+      cd img
23+      make
24+triggers:
25+  - action: email
26+    condition: failure
27+    to: mail@gabrielgio.me
28+
29diff --git a/Makefile b/Makefile
30index bd7d016ebd52fe2cb834d19008208934681bd059..bf14831c3e932d95f3ee33af555885a1ffe126c7 100644
31--- a/Makefile
32+++ b/Makefile
33@@ -74,3 +74,5 @@ 		-exec gci write -s standard -s default -s "prefix(git.sr.ht/~gabrielgio/img)" {} +
34 
35 alignment:
36 	betteralign -apply ./...
37+
38+bootstrap: