Bitbucket Pipelines
- 
Create a
bitbucket-pipelines.ymlfile at the root of your repository. - 
Copy and paste the following template or add the step to your existing pipeline.
 
image: atlassian/default-image:3
pipelines:
  default:
    - parallel:
      - step:
          name: Run MegaLinter
          image: oxsecurity/megalinter:v9
          script:
            - export DEFAULT_WORKSPACE=$BITBUCKET_CLONE_DIR && bash /entrypoint.sh
          artifacts:
            -  megalinter-reports/**