about summary refs log tree commit diff
path: root/templates/rust/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to 'templates/rust/.drone.yml')
-rw-r--r--templates/rust/.drone.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/templates/rust/.drone.yml b/templates/rust/.drone.yml
deleted file mode 100644
index ac03e81..0000000
--- a/templates/rust/.drone.yml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-kind: pipeline
-type: docker
-name: checks
-
-trigger:
-  event:
-    - push
-    - pull_request
-
-steps:
-  - name: Run checks
-    image: nixpkgs/nix-flakes:nixos-22.05
-    commands:
-      - nix develop --command cargo fmt --check
-      - nix develop --command cargo deny check
-      - nix develop --command cargo clippy -- -D warnings
----
-kind: pipeline
-type: docker
-name: build
-
-trigger:
-  event:
-    - push
-    - pull_request
-
-steps:
-  - name: Run tests and build
-    image: nixpkgs/nix-flakes:nixos-22.05
-    commands:
-      - nix develop --command cargo test
-      - nix build .