diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b3323884f3fd4c571fab48cf5b6069a3b63c2596..a6ce3aee3286d3fec05a0796780556e81d18f2a7 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