| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | name: formaton:  pull_request:    branches:      - "master"    paths:      - 'lua/**'      - 'snapshots/**'      - 'tests/**'      - 'utils/**'jobs:  stylua-check:    name: "Formatting check with Stylua"    runs-on: ubuntu-20.04    steps:      - uses: actions/checkout@v3      - name: Lint with stylua        uses: JohnnyMorganz/stylua-action@v2        with:          token: ${{ secrets.GITHUB_TOKEN }}          # CLI arguments          version: 0.15.3          args: --check .  shfmt-check:    name: "Formatting check with shfmt"    runs-on: ubuntu-20.04    steps:      - uses: actions/checkout@v3      - name: Setup Go        uses: actions/setup-go@v3        with:          go-version: "1.18"      - name: Use shfmt        run: |          go install mvdan.cc/sh/v3/cmd/shfmt@v3.6      # https://google.github.io/styleguide/shellguide.html      - name: Check formatting        run: make style-sh
 |