From 1b6896aedab7db2b61d69fe43541dca6bffe3234 Mon Sep 17 00:00:00 2001 From: core Date: Mon, 10 Apr 2023 20:02:36 -0400 Subject: [PATCH] CI --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..e71971d5844f14e621d36100cdeac196174a5546 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +image: "rust:latest" +before_script: + - apt-get update -yqq + - apt-get install -yqq --no-install-recommends build-essential + +check:cargo: + script: + - rustc --version && cargo --version + - cargo check --workspace --verbose --locked + - cargo clippy --workspace --verbose --locked \ No newline at end of file