Skip to content
Petra Jaros edited this page Oct 4, 2020 · 4 revisions

Shellcheck can be run on CircleCI in a variety of ways:

CircleCI provides a circleci/shellcheck orb that can be used in any CircleCI workflow:

https://circleci.com/orbs/registry/orb/circleci/shellcheck

version: 2.1

orbs:
  shellcheck: circleci/[email protected]

workflows:
  shellcheck:
    jobs:
      - shellcheck/check

Manually

Simply copy and paste the existing installation instructions into a run step in your CircleCI job.

For example:

version: 2.1

jobs:
  build:
    macos:
      xcode: "9.0"
    steps:
      - checkout
      - run: brew install shellcheck

Or, in a Linux-based image:

version: 2.1

jobs:
  build:
    machine: true
    steps:
      - checkout
      - run: apt-get install shellcheck

ShellCheck

Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature guerraart8 to find a specific , or see Checks.

Clone this wiki locally