Skip to content

Commit

Permalink
Merge pull request #213 from GlobalDataverseCommunityConsortium/190-s…
Browse files Browse the repository at this point in the history
…hellcheck

Add shellcheck for PRs
  • Loading branch information
poikilotherm authored Oct 31, 2020
2 parents a8503e3 + d1a0d7c commit 413cd89
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
pull_request:
paths:
- '**.sh'

name: 'Shellcheck'

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

0 comments on commit 413cd89

Please sign in to comment.