Bitbucket Pipelines
- 
Create a bitbucket-pipelines.ymlfile on the root directory 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:v7
          script:
            - export DEFAULT_WORKSPACE=$BITBUCKET_CLONE_DIR && bash /entrypoint.sh
          artifacts:
            -  megalinter-reports/**