Issue #167: Make yamllint less bothersome and install ansible-base in different order.

This commit is contained in:
Jeff Geerling
2020-07-20 16:25:35 -05:00
parent 6d2567b6c0
commit 4a2b1b918b
2 changed files with 6 additions and 3 deletions

View File

@@ -83,12 +83,14 @@ jobs:
with:
python-version: ${{ matrix.python_version }}
- name: Install ansible base (devel branch)
run: pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check
- name: Install molecule and openshift dependencies
run: pip install molecule yamllint openshift flake8
- name: Install ansible base (devel branch)
run: |
pip uninstall ansible
pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check
- name: Create default collection path symlink
run: |
mkdir -p /home/runner/.ansible

View File

@@ -8,6 +8,7 @@ rules:
brackets:
max-spaces-inside: 1
level: error
document-start: disable
line-length: disable
truthy: disable
indentation: