Skip to content

Passwords removed (#58) #335

Passwords removed (#58)

Passwords removed (#58) #335

Workflow file for this run

name: Ansible Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ansible:
- stable-2.16
- stable-2.17
- stable-2.18
steps:
- uses: actions/checkout@v2
# this Action should follow steps to set up Python build environment
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install cohesity-management-sdk
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Perform sanity testing with ansible-test
uses: ansible-community/ansible-test-gh-action@release/v1
with:
ansible-core-version: ${{ matrix.ansible }}
testing-type: sanity