Skip to content
Snippets Groups Projects
.gitlab-ci.yml 288 B
Newer Older
image: python:3.12

Ashis Ravindran's avatar
Ashis Ravindran committed
stages:
  - lint
  - validate

before_script:
  - pip install --upgrade pip
  - pip install poetry
  - poetry install --only main
Ashis Ravindran's avatar
Ashis Ravindran committed

lint:
  stage: lint
  script:
    - poetry run reporting lint
Ashis Ravindran's avatar
Ashis Ravindran committed

validate:
  stage: validate
Ashis Ravindran's avatar
Ashis Ravindran committed
  script:
    - poetry run reporting validate