Skip to content

Commit

Permalink
Added .circleci/config.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Carswell <[email protected]>
  • Loading branch information
AfroThundr3007730 committed Mar 12, 2024
1 parent 2f9862b commit bf1374e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2.1

orbs:
shellcheck: circleci/[email protected]

jobs:
run-shellcheck:
docker:
- image: cimg/base:stable

Check notice

Code scanning / Checkov (reported by Codacy)

Ensure the pipeline image version is referenced via hash not arbitrary tag. Note

Ensure the pipeline image version is referenced via hash not arbitrary tag.
resource_class: small
steps:
- checkout
- shellcheck/install
- run:
command: bash -c 'shopt -s globstar nullglob; shellcheck **/*.sh && echo All clean'
name: Run Shellcheck command

workflows:
main-workflow:
jobs:
- run-shellcheck

0 comments on commit bf1374e

Please sign in to comment.