From 9b0bb23e62d690d896d03a0260a028ca280e4235 Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Wed, 14 Sep 2022 15:07:00 +0200 Subject: [PATCH] Make stack build and test run in nix-shell --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index cc26732..7383a2a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -30,5 +30,5 @@ steps: image: nixos/nix:2.11.0 commands: - cd algo2/radix-heap - - stack build - - stack test + - nix-shell --run "stack build" + - nix-shell --run "stack test"