Replace echos with printf (applications-setup) #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for bashisms | |
on: | |
push: | |
paths: | |
- tabs/** | |
branches: [ "main" ] | |
pull_request: | |
paths: | |
- tabs/** | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
check-bashisms: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install devscripts | |
run: sudo apt install devscripts | |
- name: Concatenate all .sh files and check for bashisms | |
working-directory: tabs | |
run: | | |
find . -name '*.sh' -exec checkbashisms {} + > all_scripts.sh |