constellation/.github/workflows/test-shellcheck.yml
renovate[bot] 998c8ee889
Update GitHub action dependencies (#701)
Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2022-12-02 10:33:19 +01:00

42 lines
1006 B
YAML

name: Shellcheck
on:
workflow_dispatch:
push:
branches:
- main
- "release/**"
paths:
- "**.sh"
- "**.bash"
pull_request:
paths:
- "**.sh"
- "**.bash"
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
with:
ref: ${{ github.head_ref }}
- name: Setup Go environment
uses: actions/setup-go@d0a58c1c4d2b25278816e339b944508c875f3613 # v3.4.0
with:
go-version: "1.19.3"
- name: Install shellfmt
shell: bash
run: |
go install github.com/katexochen/sh/v3/cmd/shfmt@latest
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@6d3f514f44620b9d4488e380339edc0d9bbe2fba # master
with:
severity: info
ignore_paths: charts/cilium
additional_files: $(shfmt -f . | grep -v helm/charts/cilium)