File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 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
3535 restore-keys : ${{ runner.os }}-${{ matrix.ghc }}-
3636 - name : Build
3737 run : cabal build
38+ - name : Run tests
39+ run : cabal test
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ accumLaws runAndCompare =
296296
297297typeName :: forall (a :: Type ). (Typeable a ) => String
298298typeName =
299- let ourTyCon = typeRepTyCon $ typeRep @ a
299+ let ourTyCon = typeRepTyCon $ typeRep @ a
300300 in tyConModule ourTyCon <> " ." <> tyConName ourTyCon
301301
302302theNeedful ::
You can’t perform that action at this time.
0 commit comments