Skip to content

Commit f11655e

Browse files
committed
Enable test running in CI
1 parent 0708fea commit f11655e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ghc-version: ${{ matrix.ghc }}
2525
cabal-version: 'latest'
2626
- name: Configure
27-
run: cabal new-configure
27+
run: cabal new-configure --enable-tests
2828
- name: Freeze
2929
run: cabal freeze
3030
- name: Cache
@@ -35,3 +35,5 @@ jobs:
3535
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-
3636
- name: Build
3737
run: cabal build
38+
- name: Run tests
39+
run: cabal test

test/properties/Accum.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ accumLaws runAndCompare =
296296

297297
typeName :: forall (a :: Type). (Typeable a) => String
298298
typeName =
299-
let ourTyCon = typeRepTyCon $ typeRep @ a
299+
let ourTyCon = typeRepTyCon $ typeRep @a
300300
in tyConModule ourTyCon <> "." <> tyConName ourTyCon
301301

302302
theNeedful ::

0 commit comments

Comments
 (0)