Skip to content

Commit

Permalink
Add GHC 9.8.1 to CI (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnbastiaan authored Oct 15, 2023
1 parent 1ac10f0 commit d73df0a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
strategy:
matrix:
os: ["macOS-latest", "windows-latest", "ubuntu-22.04"]
ghc: ["9.6.2", "9.4.5", "9.2.8", "9.0.2", "8.10.7", "8.8.4", "8.6.5", "8.4.4"]
ghc: ["9.8.1", "9.6.3", "9.4.7", "9.2.8", "9.0.2", "8.10.7", "8.8.4", "8.6.5", "8.4.4"]
exclude:
# Windows gets stuck while running the testsuite, but this is not a
# doctest-parallel failure
Expand Down Expand Up @@ -181,7 +181,6 @@ jobs:
- name: Setup CI
run: |
echo $PATH
cabal v2-freeze
mv cabal.project.freeze frozen
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 0.3.1
* Dropped support for GHC 8.2
* Add support for GHC 9.8
* Drop support for GHC 8.2
* Add `--ghc-arg` as a command line argument, allowing users to pass additional arguments to GHC used to parse Haddock.

# 0.3.0.1
Expand Down
9 changes: 5 additions & 4 deletions doctest-parallel.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.0

name: doctest-parallel
version: 0.3.0.1
version: 0.3.1
synopsis: Test interactive Haskell examples
description: The doctest program checks examples in source code comments. It is modeled
after doctest for Python (<https://docs.python.org/3/library/doctest.html>).
Expand All @@ -23,8 +23,9 @@ tested-with:
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.5
, GHC == 9.6.2
, GHC == 9.4.7
, GHC == 9.6.3
, GHC == 9.8.1

extra-source-files:
example/example.cabal
Expand Down Expand Up @@ -101,7 +102,7 @@ library
, directory
, exceptions
, filepath
, ghc >=8.2 && <9.7
, ghc >=8.2 && <9.9
, ghc-paths >=0.1.0.9
, process
, random >= 1.2
Expand Down

0 comments on commit d73df0a

Please sign in to comment.