mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
7c7650b7c3
Signed-off-by: Shubhendu Ram Tripathi <shubhendu@minio.io> Signed-off-by: Harshavardhana <harsha@minio.io>
23 lines
443 B
YAML
23 lines
443 B
YAML
name: Shell formatting checks
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: runner / shfmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: luizm/action-sh-checker@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SHFMT_OPTS: "-s"
|
|
with:
|
|
sh_checker_shellcheck_disable: true # disable for now
|