From 6b78b687911888a4ac8c9c5017d30c856e223b31 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Robotka=20Adri=C3=A1n?= <robotka@sch.bme.hu>
Date: Tue, 8 Sep 2020 11:01:26 +0200
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b332388..a6ce3ae 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,9 +1,9 @@
 image: python:3.8.5-buster
 
 stages:
-  - Get dependencies
-  - Static Analysis
-  - Docker build
+  - get-dependencies
+  - static-analysis
+  - docker-build
 
 variables:
   # git tag or branch name
@@ -15,18 +15,18 @@ include:
     file: /docker-build.yaml
 
 pip:
-  stage: Get dependencies
+  stage: get-dependencies
   script:
     - pip install -r requirements.txt
 
 flake8:
-  stage: Static Analysis
+  stage: static-analysis
   script:
     - pip install flake8
     - flake8 --max-line-length=120 *.py
 
 pylint:
-  stage: Static Analysis
+  stage: static-analysis
   allow_failure: true
   script:
     - pip install pylint
-- 
GitLab