We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b099d73 commit cd3f427Copy full SHA for cd3f427
1 file changed
.circleci/config.yml
@@ -5,6 +5,17 @@ version: 2.1
5
# Define a job to be invoked later in a workflow.
6
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
7
jobs:
8
+ shellcheck:
9
+ docker:
10
+ - image: public.ecr.aws/debian/debian:11
11
+ steps:
12
+ - run:
13
+ name: "Install dependencies"
14
+ command: "apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install shellcheck git ssh-client"
15
+ - checkout
16
17
+ name: "shellcheck"
18
+ command: "shellcheck -s bash -S warning ec2-metadata ec2nvme-nsid ec2udev-vbd ec2udev-vcpu"
19
code-checks-al2:
20
docker:
21
- image: public.ecr.aws/amazonlinux/amazonlinux:2
@@ -37,5 +48,6 @@ jobs:
37
48
workflows:
38
49
ci-workflow:
39
50
51
+ - shellcheck
40
52
- code-checks-al2
41
53
- build-al2-rpm
0 commit comments