Unverified Commit a0bcd719 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

build: Add review workflow for shell formatting (#1527)

parent 9236127a
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
on:
  pull_request:

name: "Review"

jobs:
  review:
    name: review
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v5
      -
        name: Review
        uses: reviewdog/action-shfmt@v1
        with:
          shfmt_flags: "-i 2 -ci -bn"
          github_token: ${{ secrets.REPO_ACCESS_TOKEN }}