-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
- name: run-ansible-lint | ||
# You may pin to the exact commit or the version. | ||
# uses: ansible/ansible-lint@3b5bee19c2102ea35bc8619795a72c5c73797fc7 | ||
uses: ansible/[email protected] | ||
with: | ||
# Arguments to be passed to ansible-lint command. | ||
args: # optional, default is | ||
# If false, this action will not setup python and will instead rely on the already installed python. | ||
setup_python: # optional, default is true | ||
# The directory where to run ansible-lint from. Default is `github.workspace`. | ||
working_directory: # optional, default is | ||
# Path to the requirements YAML file to install role and collection dependencies. | ||
requirements_file: # optional, default is | ||
# Expected return code from ansible-lint. Default is 0. Used for self-testing purposes. | ||
expected_return_code: # optional, default is 0 | ||
|