aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-04-15 23:20:48 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2017-04-15 23:20:48 +0200
commitd02ef98f9300c0f95039a1e8e3c28d289049b80c (patch)
tree3b6b0eef5b7a35d01f9f150f787482ede0fcc67e /appveyor.yml
parent932ced9f55f556de02610425cfa161c35c6a758b (diff)
downloadgo-git-d02ef98f9300c0f95039a1e8e3c28d289049b80c.tar.gz
ci windows
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..2e07977
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,18 @@
+version: "{build}"
+platform: x64
+
+clone_folder: c:\gopath\src\gopkg.in\src-d\go-git.v4
+
+environment:
+ GOPATH: c:\gopath
+
+install:
+ - set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
+ - go version
+ - go get -v -t ./...
+
+ - git config --global user.email "travis@example.com"
+ - git config --global user.name "Travis CI
+
+build_script:
+ - go test -v ./... \ No newline at end of file