Skip to content

Commit

Permalink
actions: setup shellcheck (#1)
Browse files Browse the repository at this point in the history
* actions: setup shellcheck

* actions: shellcheck severity level - warning
  • Loading branch information
chadsr authored Apr 15, 2024
1 parent 0f326cc commit 6b95dbe
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
branches:
- master
pull_request:

name: "Lint"
permissions: {}

jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
ignore_paths: >-
./.git_submodules
./omz/.p10k.zsh
./zsh/.zshrc
severity: warning

0 comments on commit 6b95dbe

Please sign in to comment.