remove pipelineing variable. #656
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ansible-lint | |
on: [push, pull_request] # noqa: yaml[truthy] | |
jobs: | |
build: | |
name: Ansible Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies from Ansible Galaxy | |
uses: ./.github/actions/install-requirements | |
with: | |
requirements: collections/requirements.yml | |
- name: Run ansible-lint | |
uses: ansible/ansible-lint-action@v6 |