summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appveyor.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..30bc9ab
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,22 @@
+---
+version: "{build}"
+branches:
+ only:
+ - master
+clone_depth: 10
+install:
+ - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
+ - ruby --version
+ - gem --version
+ - gem install bundler --quiet --no-ri --no-rdoc
+ - bundler --version
+ - bundle install
+build: off
+test_script:
+ - bundle exec rake spec
+
+environment:
+ matrix:
+ - ruby_version: "193"
+ - ruby_version: "200"
+ - ruby_version: "200-x64"