We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0708fea commit f11655eCopy full SHA for f11655e
2 files changed
.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
24
ghc-version: ${{ matrix.ghc }}
25
cabal-version: 'latest'
26
- name: Configure
27
- run: cabal new-configure
+ run: cabal new-configure --enable-tests
28
- name: Freeze
29
run: cabal freeze
30
- name: Cache
@@ -35,3 +35,5 @@ jobs:
35
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-
36
- name: Build
37
run: cabal build
38
+ - name: Run tests
39
+ run: cabal test
test/properties/Accum.hs
@@ -296,7 +296,7 @@ accumLaws runAndCompare =
296
297
typeName :: forall (a :: Type). (Typeable a) => String
298
typeName =
299
- let ourTyCon = typeRepTyCon $ typeRep @ a
+ let ourTyCon = typeRepTyCon $ typeRep @a
300
in tyConModule ourTyCon <> "." <> tyConName ourTyCon
301
302
theNeedful ::
0 commit comments