From 8ca55394503a2d69b960b7944883ef3fd97e0474 Mon Sep 17 00:00:00 2001 From: Michal Date: Wed, 10 Aug 2022 20:05:38 +0100 Subject: [PATCH] Delete .gitlab-ci.yml Signed-off-by: Michal --- .gitlab-ci.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 39a6a8c..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,27 +0,0 @@ -image: "rust:latest" - -default: - before_script: - - rustc --version - - cargo --version - -stages: - - test - -lint-code: - stage: test - script: - - rustup component add clippy - - cargo clippy -- -D warnings - -format-code: - stage: test - script: - - rustup component add rustfmt - - cargo fmt -- --check - -audit-code: - stage: test - script: - - cargo install cargo-audit - - cargo audit