diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..e00fe50 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,24 @@ +version: 2.1 + +orbs: + codecov: codecov/codecov@4.1.0 + +jobs: + Mega-Linter: + environment: + DEFAULT_WORKSPACE: /root/project + docker: + - image: oxsecurity/megalinter-go:v7 + # checkov:skip=CKV_CIRCLECIPIPELINES_2:prefer mutable but stable tags + steps: + - checkout + - run: + command: | + sh /entrypoint.sh + - store_artifacts: + path: megalinter-reports + +workflows: + CI: + jobs: + - Mega-Linter