Skip to content

Commit

Permalink
Create bashtest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTitusTech committed Jun 29, 2024
1 parent e9382f6 commit 19c3b38
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/bashtest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Bash Lint

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install ShellCheck
run: sudo apt-get install -y shellcheck

- name: Lint Bash scripts
run: |
find . -name "*.sh" -print0 | xargs -0 shellcheck

0 comments on commit 19c3b38

Please sign in to comment.