aboutsummaryrefslogtreecommitdiff
path: root/.builds/alpine.yml
diff options
context:
space:
mode:
Diffstat (limited to '.builds/alpine.yml')
-rw-r--r--.builds/alpine.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
new file mode 100644
index 00000000..e0bd8ad3
--- /dev/null
+++ b/.builds/alpine.yml
@@ -0,0 +1,29 @@
+image: alpine/edge
+packages:
+ - golangci-lint
+ - go
+tasks:
+ - build: |
+ cd furgit
+ go build
+ - test-sha256: |
+ cd furgit
+ go test -v ./...
+ - test-sha1: |
+ cd furgit
+ go test -v -tags sha1 ./...
+ - test-race-sha256: |
+ cd furgit
+ go test -race -v ./...
+ - test-race-sha1: |
+ cd furgit
+ go test -race -v -tags sha1 ./...
+ - test-purego-sha256: |
+ cd furgit
+ go test -v -tags purego ./...
+ - lint: |
+ cd furgit
+ golangci-lint run ./...
+ - vet: |
+ cd furgit
+ go vet ./...