Skip to content
Snippets Groups Projects
Commit 471ec06f authored by Alán Muñoz's avatar Alán Muñoz
Browse files

add gitlab-ci script

parent 967d8e74
No related branches found
No related tags found
No related merge requests found
image: python:3.7
stages:
- test
- lint
- types
- deploy
before_script:
- pip install poetry
- poetry config virtualenvs.create false
- poetry install
Unit Tests:
stage: test
script:
- poetry run pytest
Python Code Lint:
stage: lint
script:
- poetry run black .
Static Type check:
stage: types
script:
- poetry run mypy .
Deploy:
stage: deploy
script:
- echo "Insert deployment script here"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment