Merge pull request #141 from grische/fix/firmware_merger_typo #472
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: Salt-lint | |
on: # yamllint disable-line rule:truthy | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Salt Lint | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run salt-lint | |
uses: roaldnefs/salt-lint-action@master | |
env: | |
ACTION_STATE_FIND_PATTERN: '^.*\.(sls|jinja|j2|tmpl|tst)$' | |
ACTION_STATE_FIND_TYPE: 'regex' | |
SALT_LINT_EXTRA_PARAMS: '-v -x 204,205' |