Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-clifton committed Aug 15, 2024
1 parent 607475a commit 075d072
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@ jobs:

steps:
- uses: actions/checkout@master
- name: Install GHC
run: |
curl https://gitlab.haskell.org/haskell/ghcup/raw/master/bootstrap-haskell -sSf | sh
- uses: haskell-actions/setup@v2
- name: Build
run: |
source ~/.ghcup/env
cabal v2-configure --enable-tests
cabal v2-build
mkdir out
Expand Down
1 change: 1 addition & 0 deletions src/AppKit.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module AppKit where

import Control.Exception (finally, handle, SomeException(..))
import Control.Monad.Cont
import Control.Monad.IO.Class (liftIO)
import Data.ByteString (useAsCString)
import Data.Text (Text)
import qualified Data.Text.Encoding as Text
Expand Down
1 change: 1 addition & 0 deletions src/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import Control.Concurrent
import Control.Concurrent.Async
import Control.Monad
import Control.Monad.Cont
import Control.Monad.IO.Class (liftIO)
import Data.Aeson ((.:), (<?>))
import qualified Data.Aeson as JSON
import qualified Data.Aeson.Types as JSON
Expand Down

0 comments on commit 075d072

Please sign in to comment.