Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos committed Mar 7, 2024
1 parent f4b3020 commit 5b105f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ module Main where
import Data.Aeson qualified as Aeson
import Data.ByteString.Lazy (ByteString)
import Data.ByteString.Lazy.Char8 qualified as ByteString
import Data.Text (Text)
import Data.Text.Display (display)
import Data.Vector (Vector)
import Data.Vector qualified as Vector
import Effectful
import Effectful.Error.Static
import Options.Applicative
import System.Exit
import Data.Text (Text)
import Data.Text.Display (display)
import Data.Vector (Vector)

import Extract
import Types
import Data.Version (showVersion)
import Extract
import Paths_get_tested (version)
import Types

data Options = Options
{ path :: FilePath
Expand Down Expand Up @@ -51,7 +51,7 @@ parseOptions =
<*> optional (strOption (long "ubuntu-version" <> metavar "VERSION" <> help "Enable the Ubuntu runner with the selected version"))
<*> switch (long "windows" <> help "(legacy) Enable the Windows runner's latest version")
<*> optional (strOption (long "windows-version" <> metavar "VERSION" <> help "Enable the Windows runner with the selected version"))
<**> simpleVersioner (showVersion version)
<**> simpleVersioner (showVersion version)

runOptions :: Options -> Eff [Error ProcessingError, IOE] ByteString
runOptions options = do
Expand Down
2 changes: 1 addition & 1 deletion get-tested.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ executable get-tested

other-modules:
Extract
Types
Paths_get_tested
Types

build-depends:
, aeson ^>=2.1
Expand Down

0 comments on commit 5b105f5

Please sign in to comment.