Skip to content

Commit

Permalink
WIP: Lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
derekerdmann committed Jan 15, 2024
1 parent 6075830 commit f4b0785
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:

- name: Vint
shell: bash
run: >
pipx run --python '${{ steps.python39.outputs.python-path }}'
run: |
pipx install --python '${{ steps.python39.outputs.python-path }}' vim-vint
vint $(git ls-files -s '.*vim*' '**/*.vim' | awk '!/^16/ {print $4}')
- name: yamllint
shell: bash
run: >
pipx run
run: |
pipx install yamllint
yamllint $(git ls-files -s '*.yml' '**/*.yml' '*.yaml' '**/*.yaml' | awk '!/^16/ {print $4}'

0 comments on commit f4b0785

Please sign in to comment.