diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a84fea4eaedd84af9075597454e6035a306b3398..d15635a7a8a238b28000cd6180f15eb00344a29d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,25 +2,25 @@ image: rustlang/rust:nightly
 
 run-tests-release:
   script:
-    - cd proximity-rs
+    - cd core
     - rustc --version && cargo --version 
     - cargo test --release --verbose 
 
 run-tests-debug:
   script:
-    - cd proximity-rs
+    - cd core
     - rustc --version && cargo --version 
     - cargo test --verbose 
 
 clippy:
   script:
-    - cd proximity-rs
+    - cd core
     - rustup component add clippy
     - cargo clippy
 
 format-check:
   script:
-    - cd proximity-rs
+    - cd core
     - rustup component add rustfmt
     - cargo fmt -- --check