diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..de472fb6eabd1899dbddff880257397234f6af19
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,25 @@
+image: "rust:latest"
+
+stages:
+  - lint
+  - build
+
+before_script:
+  - rustup target add thumbv7em-none-eabihf
+  - rustup component add rustfmt
+  - rustup component add clippy
+  - cargo install flip-link
+
+lint:
+  stage: lint
+  script:
+    - cargo fmt -- --check
+    - cargo clippy --all-features -- -D warnings
+
+build:
+  stage: build
+  script:
+    - cargo build --release
+  artifacts:
+    paths:
+      - target/thumbv7em-none-eabihf/release/cats-mobile-transceiver-mainboard