Skip to content

Commit

Permalink
Newer version.
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamHDue committed Jun 3, 2024
1 parent 748651a commit e8377ce
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up GHC 9.4.8
- name: Set up GHC 9.6.5
uses: haskell/actions/setup@v2
id: setup
with:
ghc-version: '9.4.8'
cabal-version: '3.10.2.1'
ghc-version: '9.6.5'
cabal-version: '3.10.3.0'
cabal-update: true

- name: Installed versions of GHC and Cabal
Expand Down Expand Up @@ -52,12 +52,12 @@ jobs:
with:
version: 'nightly'

- name: Set up GHC 9.4.8
- name: Set up GHC 9.6.5
uses: haskell/actions/setup@v2
id: setup
with:
ghc-version: '9.4.8'
cabal-version: '3.10.2.1'
ghc-version: '9.6.5'
cabal-version: '3.10.3.0'
cabal-update: true

- name: Installed versions of GHC and Cabal
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let
pkgs = import <nixpkgs> { config.allowUnfree = true; };
unstable = import <nixos-unstable> { };
compilerVersion = "ghc94";
compilerVersion = "ghc96";
compiler = pkgs.haskell.packages."${compilerVersion}";
in
let pkg =
Expand Down
1 change: 1 addition & 0 deletions src/Alpacc/LL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ module Alpacc.LL
)
where

import Control.Monad (foldM, zipWithM)
import Control.Monad.State hiding (state)
import qualified Data.List as List
import Data.Map (Map)
Expand Down
1 change: 1 addition & 0 deletions src/Alpacc/LLP.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module Alpacc.LLP
)
where

import Control.Monad (foldM, join)
import Control.DeepSeq
import Control.Monad.State
import Data.Bifunctor qualified as BI
Expand Down

0 comments on commit e8377ce

Please sign in to comment.