Skip to content

Commit

Permalink
ci: Provide a basic shellcheck upon the new bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
AiyionPrime committed Sep 27, 2024
1 parent d7585a9 commit 9dc2e74
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ name: CI
- main
pull_request: null
jobs:
shellcheck:
uses: ./.github/workflows/ci_shellcheck.yml
ubuntu_verify_repo:
uses: ./.github/workflows/ci_ubuntu_verify_repo.yml
ubuntu_verify_installation:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/ci_shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: CI run shellcheck on bash script
'on':
workflow_call: null
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master

0 comments on commit 9dc2e74

Please sign in to comment.