-
Notifications
You must be signed in to change notification settings - Fork 1.8k
CircleCI
Petra Jaros edited this page Oct 4, 2020
·
4 revisions
Shellcheck can be run on CircleCI in a variety of ways:
Via CircleCI Orbs
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
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