aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 20f143e6d839dbeeff148d7973701e4523365389 (plain) (blame)
1
2
3
4
5
6
7
8
9
image: python:3.7

test:
  before_script:
    - pip install poetry pre-commit
    - poetry install
  script:
    - pre-commit run -a
    - poetry run pytest