mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
ci: add shellfmt workflow
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
parent
106b738fab
commit
a7535fb449
2
.github/workflows/test-shellcheck.yml
vendored
2
.github/workflows/test-shellcheck.yml
vendored
@ -7,9 +7,11 @@ on:
|
|||||||
- "release/**"
|
- "release/**"
|
||||||
paths:
|
paths:
|
||||||
- "**.sh"
|
- "**.sh"
|
||||||
|
- "**.bash"
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- "**.sh"
|
- "**.sh"
|
||||||
|
- "**.bash"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
shellcheck:
|
shellcheck:
|
||||||
|
39
.github/workflows/test-shellfmt.yml
vendored
Normal file
39
.github/workflows/test-shellfmt.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
name: Shellcheck
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- "release/**"
|
||||||
|
paths:
|
||||||
|
- "**.sh"
|
||||||
|
- "**.bash"
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "**.sh"
|
||||||
|
- "**.bash"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
shellcheck:
|
||||||
|
name: Shellfmt
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
|
||||||
|
- name: Setup Go environment
|
||||||
|
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # tag=v3.3.1
|
||||||
|
with:
|
||||||
|
go-version: "1.19.3"
|
||||||
|
|
||||||
|
- name: Install shellfmt
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
go install mvdan.cc/sh/v3/cmd/shfmt@latest
|
||||||
|
|
||||||
|
- name: Run shellfmt
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
shfmt -i 2 -d -s -sr $(shfmt -f . | grep -v helm/charts/cilium)
|
Loading…
Reference in New Issue
Block a user