mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-22 19:10:18 +01:00
6887864d2c
Cleaning up yamllint errors. - Use .yamllint.yml and .yamllint_defaults.yml instead of .yamllint.yaml. - Fix the invalid indentations. Cleaning up ansible-lint errors. - Add "name" to every task. - Use command rather than shell - Add "changed_when: false". - Use '|' instead of '>' for the shell module. - Fix '/bin/sh: line 3: CRYPTO_POLICY: unbound variable'. - Add "set -eu" and "set -o pipefail" if pipefail is available. Note: "pipefail" is not available in "sh" and "dash". - Add "- '306' # Shells that use pipes should set the pipefail option" to .ansible-lint since ansible-lint does not recognize it if it's set in "if set -o | grep pipefail". RHELPLAN-73804
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Ansible Lint # feel free to pick your own name
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
# test-ansible28:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - name: checkout PR
|
|
# uses: actions/checkout@v2
|
|
# - name: Lint Ansible Playbook
|
|
# uses: ansible/ansible-lint-action@master
|
|
# with:
|
|
# targets: "tests/test_*.yml"
|
|
# override-deps: |
|
|
# ansible==2.8
|
|
# args: ""
|
|
# test-ansible29:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - name: checkout PR
|
|
# uses: actions/checkout@v2
|
|
# - name: Lint Ansible Playbook
|
|
# uses: ansible/ansible-lint-action@master
|
|
# with:
|
|
# targets: "tests/test_*.yml"
|
|
# override-deps: |
|
|
# ansible==2.9
|
|
# args: ""
|
|
test-ansible210:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout PR
|
|
uses: actions/checkout@v2
|
|
- name: Lint Ansible Playbook
|
|
uses: ansible/ansible-lint-action@master
|
|
with:
|
|
targets: "tests/test_*.yml"
|
|
override-deps: |
|
|
ansible==2.10
|
|
args: ""
|