ansible / ansible-lint-action

❗️Replaced by https://github.com/marketplace/actions/run-ansible-lint
https://github.com/marketplace/actions/run-ansible-lint
MIT License
254 stars 132 forks source link

Provide documentation for included files #117

Closed aquarion closed 2 years ago

aquarion commented 2 years ago

Heya,

Currently I have an issue with my ansible-lint action where both pip and ansible galaxy expect the /requirements.yml file to be their requirements file. Is there any documentation for the docker upstream images used to set up python, so I can find a way for both of these requirements files to coexist?

Thanks

My ansible lint file:


on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    # Important: This sets up your GITHUB_WORKSPACE environment variable
    - uses: actions/checkout@v2

    - name: Lint Ansible Playbook
      uses: ansible-community/ansible-lint-action@main
      with:
        path: "playbooks/"