Skip to content

Deny PRs where shfmt doesn't pass #2

Deny PRs where shfmt doesn't pass

Deny PRs where shfmt doesn't pass #2

Workflow file for this run

name: shfmt
on:
pull_request:
# paths:
# - "helpers"
# - "hooks"
jobs:
shfmt:
name: shfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: "sudo apt install shfmt"
- run: "shfmt -bn -i 4 -d helpers/*"
- run: "shfmt -bn -i 4 -d hooks/*"