lens @ b6629e85bc4d77f43d2ddfe70505a25714018e65

feat: Add build process

To make sure that the project does not only compile on my machine.
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
new file mode 100644
index 0000000000000000000000000000000000000000..62f398327ee37fc6194afc50a833f7c6cf01eda6
--- /dev/null
+++ b/.builds/alpine.yml
@@ -0,0 +1,22 @@
+image: alpine/edge
+packages:
+  - go
+  - vips-dev
+  - sassc
+  - golangci-lint
+sources:
+  - https://git.sr.ht/~gabrielgio/img
+tasks:
+  - setup: |
+      go install  github.com/valyala/quicktemplate/qtc@latest
+      #  - lint: |
+      #      cd img
+      #      make lint
+  - build: |
+      cd img
+      make
+triggers:
+  - action: email
+    condition: failure
+    to: mail@gabrielgio.me
+
diff --git a/Makefile b/Makefile
index bd7d016ebd52fe2cb834d19008208934681bd059..bf14831c3e932d95f3ee33af555885a1ffe126c7 100644
--- a/Makefile
+++ b/Makefile
@@ -74,3 +74,5 @@ 		-exec gci write -s standard -s default -s "prefix(git.sr.ht/~gabrielgio/img)" {} +
 
 alignment:
 	betteralign -apply ./...
+
+bootstrap: