diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2026-03-23 17:24:10 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2026-03-23 17:24:10 +0000 |
| commit | fadebab18d4bb97e3ca8c840937c41cdfef8d798 (patch) | |
| tree | 5407aa1db87c9dffbf68ddc3fc698d783fbe996d /.github/workflows/shellcheck.yml | |
| parent | c06c65e0308fdfc14e455f5067a2f5dcfd9c1b77 (diff) | |
Diffstat (limited to '.github/workflows/shellcheck.yml')
| -rw-r--r-- | .github/workflows/shellcheck.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 000000000000..cdda760ae2b6 --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,27 @@ +# Copyright (c) 2024 Google LLC. All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. +# SPDX-License-Identifier: BSD-2-Clause + +name: shellcheck + +on: + pull_request: + branches: + - main + push: + branches: + - main + - '*-ci' + +jobs: + build: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - name: dependencies + run: | + sudo apt -q update + sudo apt install -q -y shellcheck + - name: build + run: ./.actions/run-shellcheck |
