Skip to content
Snippets Groups Projects
Select Git revision
  • 7eda0326d0e22801fdd12fc3924242655dcc5310
  • main default
2 results

.eslintrc.yml

Blame
  • .gitlab-ci.yml 448 B
    image: python:3.10
    
    stages:
      - dependencies
      - lint
    
    download_dependencies:
      stage: dependencies
      before_script:
        - venv .venv
        - source .venv/bin/activate
      script:
        - pip install -r requirements.txt
      artifacts:
        paths:
          - .venv
    
    pylint:
      stage: lint
      dependencies:
        - download_dependencies
      needs:
        - download_dependencies
      before_script:
        - pip install pylint
      script:
        - pylint calculator --fail-on=error