We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f6294 commit 6fba52dCopy full SHA for 6fba52d
.travis.yml
@@ -0,0 +1,17 @@
1
+---
2
+language: objective-c
3
+
4
+os:
5
+ - osx
6
7
+osx_image: xcode7
8
9
+install:
10
+ - sudo easy_install pip
11
+ - sudo pip install ansible
12
+ - mkdir -p /tmp/roles
13
+ - "{ echo '[defaults]'; echo 'roles_path = ../:/tmp/roles'; } >> ansible.cfg"
14
15
+script:
16
+ - "ansible-playbook -i tests/inventory tests/travis.yml --syntax-check"
17
+ - "ansible-playbook -i tests/inventory tests/travis.yml --connection=local"
tests/inventory
@@ -0,0 +1 @@
+localhost
tests/travis.yml
@@ -0,0 +1,6 @@
+- hosts: 127.0.0.1
+ connection: local
+ roles:
+ - ansible-role-vim
0 commit comments