summaryrefslogtreecommitdiff
path: root/vendor/github.com/go-playground/form/v4/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/go-playground/form/v4/.travis.yml')
-rw-r--r--vendor/github.com/go-playground/form/v4/.travis.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/github.com/go-playground/form/v4/.travis.yml b/vendor/github.com/go-playground/form/v4/.travis.yml
new file mode 100644
index 000000000..fbc61d1b8
--- /dev/null
+++ b/vendor/github.com/go-playground/form/v4/.travis.yml
@@ -0,0 +1,26 @@
+language: go
+go:
+ - 1.13.4
+ - tip
+matrix:
+ allow_failures:
+ - go: tip
+
+notifications:
+ email:
+ recipients: dean.karn@gmail.com
+ on_success: change
+ on_failure: always
+
+before_install:
+ - go install github.com/mattn/goveralls
+
+# Only clone the most recent commit.
+git:
+ depth: 1
+
+script:
+ - go test -v -race -covermode=atomic -coverprofile=coverage.coverprofile ./...
+
+after_success: |
+ goveralls -coverprofile=coverage.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN \ No newline at end of file