From 90093bd8759fa1737c059febe9a4014a6a9548ca Mon Sep 17 00:00:00 2001 From: Amitai Burstein Date: Sun, 26 Jan 2025 14:21:37 +0200 Subject: [PATCH] Remove `nix-shell` from testing instructions And link to the GH action on the boilerplate repo --- Guide/testing.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Guide/testing.markdown b/Guide/testing.markdown index 93792a3e9..6ae7cfd61 100644 --- a/Guide/testing.markdown +++ b/Guide/testing.markdown @@ -129,10 +129,10 @@ package flags have changed, resetting and loading new packages... Loaded GHCi configuration from /home/amitaibu/Sites/Haskell/ihp/blog/.ghci ``` -Another way of executing the tests, that we'll use on CI, is to use the `runghc` command, while running `devenv up` on another tab: +Another way of executing the tests, that we'll use on [CI](https://github.com/digitallyinduced/ihp-boilerplate/blob/master/.github/workflows/test.yml), is to use the `runghc` command, while running `devenv up` on another tab: ``` -nix-shell --run "runghc $(make print-ghc-extensions) -i. -ibuild -iConfig Test/Main.hs" +runghc $(make print-ghc-extensions) -i. -ibuild -iConfig Test/Main.hs ``` ## Setting the Current User During Testing