Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit 4a2b1b9

Browse files
committed
Issue #167: Make yamllint less bothersome and install ansible-base in different order.
1 parent 6d2567b commit 4a2b1b9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,14 @@ jobs:
8383
with:
8484
python-version: ${{ matrix.python_version }}
8585

86-
- name: Install ansible base (devel branch)
87-
run: pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check
88-
8986
- name: Install molecule and openshift dependencies
9087
run: pip install molecule yamllint openshift flake8
9188

89+
- name: Install ansible base (devel branch)
90+
run: |
91+
pip uninstall ansible
92+
pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check
93+
9294
- name: Create default collection path symlink
9395
run: |
9496
mkdir -p /home/runner/.ansible

.yamllint

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ rules:
88
brackets:
99
max-spaces-inside: 1
1010
level: error
11+
document-start: disable
1112
line-length: disable
1213
truthy: disable
1314
indentation:

0 commit comments

Comments
 (0)