mirror of https://github.com/minio/minio.git
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
|