add tester_workflow

This commit is contained in:
2023-06-22 23:30:11 +02:00
parent 32b3efbde7
commit 67f701adbd

20
.github/workflows/bash_tester.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Bash Script Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Bash
run: |
sudo apt update
sudo apt install -y bash
- name: Run Bash script tests
run: |
find . -type f -name "*.sh" -exec bash -n {} \;