Skip to content

Commit

Permalink
shellcheck.yml: create file
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Mar 20, 2023
1 parent 8afe0ad commit 8cbc93d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: shellcheck

on:
push:
branches: master
paths:
- '**.sh'
- '**/shellcheck.yml'
pull_request:
branches: master
paths:
- '**.sh'
- '**/shellcheck.yml'

jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master

0 comments on commit 8cbc93d

Please sign in to comment.