diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4a30c8ee74b0e47ebf4f5d4cc356503c31e6be38..da1a3ad3d24162bc39d3628e6d04107e7e6bf5b2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,9 @@
 image: debian:stable
 
-before_script: apt-get update && apt-get install -y php-cli build-essential make && make dependencies
+before_script:
+    - apt-get update && apt-get install -y php-cli build-essential make && make dependencies
 
-sytax:
+syntax:
     stage: test
-    script: perl -c src/tetras-back && perl -c src/configuration.pl && for f in src/www/*.php; do php -l $f; done
+    script:
+        - perl -c src/tetras-back && perl -c src/configuration.pl && for f in src/www/*.php; do php -l $f; done