Skip to main content

Quickstart with GitLab CI

Create GitLab CI Workflow referring below example:

# .gitlab-ci.yml
stages:
- codety

job_build:
stage: test
image:
name: codetyio/codety:latest
script:
- codety


The Codety Analyzer will be triggered when there's a new pull request been created or updated.