summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2021-01-09 14:12:03 +0100
committerMiklós Fazekas <mfazekas@szemafor.com>2021-01-09 14:12:03 +0100
commit305ef3a8dd1e5e643c7691cd5f70fed0b9615546 (patch)
tree46bcbe078a1958eec33fff7dbcea7c0eb0ed04a2
parent09e31113bb39379177e95fa199c52459fd757005 (diff)
downloadnet-ssh-305ef3a8dd1e5e643c7691cd5f70fed0b9615546.tar.gz
Ansible install
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d150188..c9fbd01 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,6 +13,10 @@ jobs:
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: 2.7
- name: Cache bundler
uses: actions/cache@v1
@@ -32,7 +36,11 @@ jobs:
BUNDLE_GEMFILE=./Gemfile.noed25519 bundle install --jobs 4 --retry 3 --path vendor/bundle
env:
BUNDLE_PATH: vendor/bundle
-
+
+ - name: Ansible install
+ run: |
+ python -m pip install --upgrade pip
+ pip install ansible urllib3 pyOpenSSL ndg-httpsclient pyasn1
- name: Run Tests
run: bundle exec rake test
- name: Run Tests