[keyserver] replace sidebar source message quotes with markdown quotes #4284
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: ShellCheck | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
shellcheck: | |
name: ShellCheck | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ShellCheck | |
run: sudo apt-get update && DEBIAN_FRONTEND=noninteractive sudo apt-get install -y shellcheck | |
- name: Set globstar | |
run: shopt -s globstar | |
- name: Run ShellCheck | |
run: shellcheck -x -P SCRIPTDIR **/*.sh |