Skip to content

Commit

Permalink
shellcheck github action
Browse files Browse the repository at this point in the history
  • Loading branch information
1zc committed Dec 21, 2023
1 parent a97874a commit 460d0aa
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Shellcheck"
permissions: {}
on:
pull_request:
types: [opened, reopened]
push:
branches:
- main
- dev
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -s bash
with:
severity: error

0 comments on commit 460d0aa

Please sign in to comment.