...

Text file src/github.com/linkerd/linkerd2/.github/workflows/shell.yml

Documentation: github.com/linkerd/linkerd2/.github/workflows

     1name: Shell
     2
     3on:
     4  pull_request:
     5    paths:
     6      - .github/workflows/shell.yml
     7      - "**/*.sh"
     8
     9permissions:
    10  contents: read
    11
    12jobs:
    13  # For more information on shellcheck failures:
    14  # https://github.com/koalaman/shellcheck/wiki/Checks
    15  shellcheck:
    16    timeout-minutes: 10
    17    runs-on: ubuntu-22.04
    18    steps:
    19      - uses: linkerd/dev/actions/setup-tools@v43
    20      - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
    21      - run: just sh-lint

View as plain text