mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
7c13302936
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
29 lines
606 B
YAML
29 lines
606 B
YAML
name: Shellcheck
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "release/**"
|
|
paths:
|
|
- "**.sh"
|
|
pull_request:
|
|
paths:
|
|
- "**.sh"
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- name: Run ShellCheck
|
|
uses: ludeeus/action-shellcheck@b2bbefc2e6b9dcbc6355b85e366c9e55bf8d57e1 # master
|
|
with:
|
|
severity: error
|
|
ignore_paths: charts/cilium
|