mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-31 17:30:54 -08:00
23 lines
628 B
YAML
23 lines
628 B
YAML
# .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@v3
|
|
- name: Install shellcheck
|
|
run: sudo apt-get install -y shellcheck
|
|
- name: Check shell scripts
|
|
run: tool/check-shell-scripts
|