File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,17 @@ version: 2.1
55# Define a job to be invoked later in a workflow.
66# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
77jobs :
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+ - run :
17+ name : " shellcheck"
18+ command : " shellcheck -s bash -S warning ec2-metadata ec2nvme-nsid ec2udev-vbd ec2udev-vcpu"
819 code-checks-al2 :
920 docker :
1021 - image : public.ecr.aws/amazonlinux/amazonlinux:2
3748workflows :
3849 ci-workflow :
3950 jobs :
51+ - shellcheck
4052 - code-checks-al2
4153 - build-al2-rpm
You can’t perform that action at this time.
0 commit comments