Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Syntax Testing
# -n : ead commands but do not execute them. This may be used to check a shell script for syntax errors. This is ignored by interactive shells.
run : |
bash -n dotman.sh
sh -n tools/install.sh
bash -n bashTests.sh
sh -n tools/install.sh

4 changes: 4 additions & 0 deletions bashTests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
for v in 3 4 5; do
docker run -v "$PWD:/mnt" "bash:$v" \
bash dotman.sh
done