Skip to content

Commit 6c7c947

Browse files
committed
cabal update, cabal install hspec-discover
1 parent 0ca3f51 commit 6c7c947

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ jobs:
1818
with:
1919
nix_path: nixpkgs=channel:nixpkgs-unstable
2020

21-
- run: nix-channel --update
21+
- name: Nix channel --update
22+
run: nix-channel --update
23+
24+
- name: Cabal update
25+
run: nix develop --command bash -c 'cabal update'
2226

2327
- name: Build and run tests
24-
run: nix develop --command bash -c 'cabal test'
28+
run: nix develop --command bash -c 'cabal install hspec-discover && cabal test'

arrayfire.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license: BSD-3-Clause
77
license-file: LICENSE
88
author: David Johnson
99
maintainer: code@dmj.io
10-
copyright: David Johnson (c) 2018-2025
10+
copyright: David Johnson (c) 2018-2026
1111
category: Math
1212
build-type: Custom
1313
extra-source-files: CHANGELOG.md
@@ -88,7 +88,7 @@ library
8888
c-sources:
8989
cbits/wrapper.c
9090
build-depends:
91-
base < 5, filepath, vector
91+
base < 5, deepseq, filepath, vector
9292
hs-source-dirs:
9393
src
9494
ghc-options:

0 commit comments

Comments
 (0)