Test with GHC 9.10.1, drop 9.6

This commit is contained in:
Mark Karpov 2024-06-01 18:09:05 +02:00
parent 6d07432bd6
commit 739cdcb4d6
4 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
cabal: ["3.10"]
ghc: ["9.4.7", "9.6.3", "9.8.1"]
ghc: ["9.6.3", "9.8.2", "9.10.1"]
env:
CONFIG: "--enable-tests --enable-benchmarks --flags=dev"
steps:

View File

@ -5,7 +5,7 @@ license: BSD-2-Clause
license-file: LICENSE.md
maintainer: Mark Karpov <markkarpov92@gmail.com>
author: Megaparsec contributors
tested-with: ghc ==9.4.7 ghc ==9.6.3 ghc ==9.8.1
tested-with: ghc ==9.6.3 ghc ==9.8.2 ghc ==9.10.1
homepage: https://github.com/mrkkrp/megaparsec
bug-reports: https://github.com/mrkkrp/megaparsec/issues
synopsis: Test utilities and the test suite of Megaparsec
@ -80,7 +80,7 @@ test-suite tests
if flag(dev)
ghc-options:
-Wall -Werror -Wredundant-constraints -Wpartial-fields
-Wunused-packages
-Wunused-packages -Wno-unused-imports
else
ghc-options: -O2 -Wall

View File

@ -9,7 +9,7 @@ author:
Paolo Martini <paolo@nemail.it>,
Daan Leijen <daan@microsoft.com>
tested-with: ghc ==9.4.7 ghc ==9.6.3 ghc ==9.8.1
tested-with: ghc ==9.6.3 ghc ==9.8.2 ghc ==9.10.1
homepage: https://github.com/mrkkrp/megaparsec
bug-reports: https://github.com/mrkkrp/megaparsec/issues
synopsis: Monadic parser combinators
@ -70,7 +70,7 @@ library
if flag(dev)
ghc-options:
-Wall -Werror -Wredundant-constraints -Wpartial-fields
-Wunused-packages
-Wunused-packages -Wno-unused-imports
else
ghc-options: -O2 -Wall

View File

@ -4,7 +4,7 @@ version: 0.1.0
license: BSD3
maintainer: Mark Karpov <markkarpov92@gmail.com>
author: Mark Karpov <markkarpov92@gmail.com>
tested-with: ghc ==8.6.5
tested-with: ghc ==9.6.3 ghc ==9.8.2 ghc ==9.10.1
homepage: https://github.com/mrkkrp/megaparsec
bug-reports: https://github.com/mrkkrp/megaparsec/issues
synopsis: Performance benchmarks: Megaparsec vs Attoparsec