Skip to content
Snippets Groups Projects
Select Git revision
  • 90a68ff12c7fef596ce8ec656b5c32567a9940f5
  • main default
  • tp3
  • tp2
  • tp1
  • tp3-correction
  • tp2-correction
  • tp1-correction
  • admins
9 results

.gitlab-ci.yml

Blame
  • Forked from an inaccessible project.
    .gitlab-ci.yml 309 B
    image: python:3.10
    
    stages:
      - lint
    
    pylint:
      stage: lint
      script:
        - python -m venv .venv
        - source .venv/bin/activate
        - pip install -r requirements.txt
        # C'est à ton tour de coder un script qui lance pylint sur ton projet
        - pip install pylint
        - pylint calculator --fail-on=warning