We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3f928 commit 92075c3Copy full SHA for 92075c3
.travis.yml
@@ -7,23 +7,22 @@ sudo: required
7
services:
8
- docker
9
10
-# Install ansible
11
addons:
12
apt:
13
packages:
14
- python-pip
15
16
install:
17
- # Install ansible
18
- pip install ansible
19
20
- # Check ansible version
21
- - ansible --version
22
-
23
-script:
+before_script:
24
- docker run --name xenial -d codeyourinfra/python3:xenial
25
- docker run --name bionic -d codeyourinfra/python3:bionic
+
+script:
26
- ansible-playbook tests/test.yml -i tests/inventory
+after_script:
27
- docker stop xenial bionic
28
- docker rm xenial bionic
29
0 commit comments