about summary refs log tree commit diff
path: root/templates/go/.drone.yml
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-03-03 17:52:45 -0800
committerFranck Cuny <franck@fcuny.net>2023-03-03 17:52:45 -0800
commit00c0da8a04a85aa96880221f5de3ba4fddd84a12 (patch)
treec2ab008d880488e6d96c1fdb1dad86d3bde2afb9 /templates/go/.drone.yml
parentmeta: convert README from org-mode to markdown (diff)
downloadworld-00c0da8a04a85aa96880221f5de3ba4fddd84a12.tar.gz
ref(templates): drop drone/GHA support
Diffstat (limited to '')
-rw-r--r--templates/go/.drone.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/go/.drone.yml b/templates/go/.drone.yml
deleted file mode 100644
index 13b4026..0000000
--- a/templates/go/.drone.yml
+++ /dev/null
@@ -1,32 +0,0 @@
----
-kind: pipeline
-type: docker
-name: checks
-
-trigger:
-  event:
-    - push
-    - pull_request
-
-steps:
-  - name: Run checks
-    image: nixpkgs/nix-flakes:nixos-22.11
-    commands:
-      - nix develop --command pre-commit run --verbose --hook-stage commit --all-files --show-diff-on-failure
-
----
-kind: pipeline
-type: docker
-name: build
-
-trigger:
-  event:
-    - push
-    - pull_request
-
-steps:
-  - name: Run tests and build
-    image: nixpkgs/nix-flakes:nixos-22.11
-    commands:
-      - nix develop --command go test -race ./...
-      - nix build