-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
* [#29] Support GHC 9.6 Resolves #29 * Enable CI * Use unreleased in the CHANGELOG * No version bump yet. --------- Co-authored-by: Andreas Ländle <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ license: MPL-2.0 | |
license-file: LICENSE | ||
author: Dmitrii Kovanikov | ||
maintainer: Kowainik <[email protected]> | ||
copyright: 2018-2020 Kowainik, 2021-2022 Co-Log | ||
copyright: 2018-2020 Kowainik, 2021-2023 Co-Log | ||
category: Logging, Contravariant, Comonad | ||
build-type: Simple | ||
stability: stable | ||
|
@@ -39,15 +39,16 @@ tested-with: GHC == 8.2.2 | |
GHC == 8.8.4 | ||
GHC == 8.10.7 | ||
GHC == 9.0.2 | ||
GHC == 9.2.4 | ||
GHC == 9.4.2 | ||
GHC == 9.2.8 | ||
GHC == 9.4.7 | ||
GHC == 9.6.2 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/co-log/co-log-core.git | ||
|
||
common common-options | ||
build-depends: base >= 4.10.1.0 && < 4.18 | ||
build-depends: base >= 4.10.1.0 && < 4.19 | ||
|
||
ghc-options: -Wall | ||
-Wcompat | ||
|
@@ -69,6 +70,9 @@ common common-options | |
if impl(ghc >= 9.2) | ||
ghc-options: -Wredundant-bang-patterns | ||
-Woperator-whitespace | ||
if impl(ghc >= 9.4) | ||
ghc-options: -Wredundant-strictness-flags | ||
-Wforall-identifier | ||
|
||
default-language: Haskell2010 | ||
default-extensions: ConstraintKinds | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{- | | ||
Module : Colog.Core | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2022 Co-Log | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log | ||
SPDX-License-Identifier : MPL-2.0 | ||
Maintainer : Co-Log <[email protected]> | ||
Stability : Stable | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
{- | | ||
Module : Colog.Core.Action | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2022 Co-Log | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log | ||
SPDX-License-Identifier : MPL-2.0 | ||
Maintainer : Co-Log <[email protected]> | ||
Stability : Stable | ||
|
@@ -66,15 +66,15 @@ module Colog.Core.Action | |
, hoistLogAction | ||
) where | ||
|
||
import Control.Monad (when, (<=<), (>=>)) | ||
import Data.Coerce (coerce) | ||
import Data.Foldable (fold, for_, traverse_) | ||
import Data.Kind (Constraint) | ||
import Data.List.NonEmpty (NonEmpty (..)) | ||
import Data.Monoid (Monoid (..)) | ||
import Data.Semigroup (Semigroup (..), stimesMonoid) | ||
import Data.Void (Void, absurd) | ||
import GHC.TypeLits (ErrorMessage (..), TypeError) | ||
import Control.Monad (when, (<=<), (>=>)) | ||
import Data.Coerce (coerce) | ||
import Data.Foldable (fold, for_, traverse_) | ||
import Data.Kind (Constraint) | ||
import Data.List.NonEmpty (NonEmpty (..)) | ||
import Data.Monoid (Monoid (..)) | ||
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 74 in src/Colog/Core/Action.hs GitHub Actions / windows-latest / ghc 9.6.2
|
||
import Data.Semigroup (Semigroup (..), stimesMonoid) | ||
import Data.Void (Void, absurd) | ||
import GHC.TypeLits (ErrorMessage (..), TypeError) | ||
|
||
#if MIN_VERSION_base(4,12,0) | ||
import qualified Data.Functor.Contravariant as Contravariant | ||
|
@@ -167,12 +167,12 @@ type family UnrepresentableClass :: Constraint | |
where | ||
UnrepresentableClass = TypeError | ||
( 'Text "'LogAction' cannot have a 'Functor' instance by design." | ||
':$$: 'Text "However, you've attempted to use this instance." | ||
' :$$: 'Text "However, you've attempted to use this instance." | ||
#if MIN_VERSION_base(4,12,0) | ||
':$$: 'Text "" | ||
':$$: 'Text "Probably you meant 'Contravariant' class instance with the following methods:" | ||
':$$: 'Text " * contramap :: (a -> b) -> LogAction m b -> LogAction m a" | ||
':$$: 'Text " * (>$) :: b -> LogAction m b -> LogAction m a" | ||
' :$$: 'Text "" | ||
' :$$: 'Text "Probably you meant 'Contravariant' class instance with the following methods:" | ||
' :$$: 'Text " * contramap :: (a -> b) -> LogAction m b -> LogAction m a" | ||
' :$$: 'Text " * (>$) :: b -> LogAction m b -> LogAction m a" | ||
#endif | ||
) | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
{- | | ||
Module : Colog.Core.Class | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2022 Co-Log | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log | ||
SPDX-License-Identifier : MPL-2.0 | ||
Maintainer : Co-Log <[email protected]> | ||
Stability : Stable | ||
|
@@ -21,7 +21,7 @@ module Colog.Core.Class | |
, Lens' | ||
) where | ||
|
||
import Colog.Core.Action (LogAction) | ||
import Colog.Core.Action (LogAction) | ||
import Data.Functor.Const (Const (..)) | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
{- | | ||
Module : Colog.Core.IO | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2022 Co-Log | ||
Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log | ||
SPDX-License-Identifier : MPL-2.0 | ||
Maintainer : Co-Log <[email protected]> | ||
Stability : Stable | ||
|
@@ -33,10 +33,11 @@ module Colog.Core.IO | |
, logFlush | ||
) where | ||
|
||
import Colog.Core.Action (LogAction (..)) | ||
import Colog.Core.Action (LogAction (..)) | ||
import Control.Monad.IO.Class (MonadIO, liftIO) | ||
import Data.Semigroup ((<>)) | ||
import System.IO (Handle, IOMode (AppendMode), hFlush, hPrint, hPutStrLn, stderr, withFile) | ||
import Data.Semigroup ((<>)) | ||
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.4.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / macOS-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.10.7
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 8.8.4
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.0.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / ubuntu-latest / ghc 9.2.8
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
Check warning on line 38 in src/Colog/Core/IO.hs GitHub Actions / windows-latest / ghc 9.6.2
|
||
import System.IO (Handle, IOMode (AppendMode), hFlush, hPrint, | ||
hPutStrLn, stderr, withFile) | ||
|
||
|
||
{- $setup | ||
|