Skip to content

added github actions workflow #1

added github actions workflow

added github actions workflow #1

Workflow file for this run

name: Bash Script Check
on:
push:
pull_request:
jobs:
test-bash:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Check Bash Syntax
run: |
find . -name "*.sh" -exec bash -n {} \;