diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index e82a7f8857ce36dbc188b657c4af0d7fcaa1b128..0000000000000000000000000000000000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-# requiring the environment of python
-image: python:3.9-buster
-
-before_script:
-  - pip install -r requirements.txt
-
-test:
-  stage: test
-  script:
-    - jupyter-book build . # build to public path
-  only:
-    - branches # this job will affect every branch except 'master'
-  except:
-    - master
-    
-# the 'pages' job will deploy and build your site to the 'public' path
-pages:
-  stage: deploy
-  script:
-    - jupyter-book build . # build to public path
-  artifacts:
-    paths:
-      - _build
-    expire_in: 10 mins
-  only:
-    - master # this job will affect only the 'master' branch