Skip to content

Fixing warnings uncovered by Clang 15.0 on macOS 14.7.1. #458

Fixing warnings uncovered by Clang 15.0 on macOS 14.7.1.

Fixing warnings uncovered by Clang 15.0 on macOS 14.7.1. #458

# .github/workflows/shell-script-check.yml -- check shell scripts
#
# This is a GitHub CI workflow
# <https://docs.github.com/en/actions/using-workflows/about-workflows>
# to check shell scripts.
name: shell script check
on:
# Run as part of CI checks on branch push and on merged pull request.
- push
- pull_request
- workflow_dispatch # allow manual triggering
jobs:
check-shell-scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage>
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Check shell scripts
run: tool/check-shell-scripts