Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow text>=2.1, include GHC 9.8.1 in CI #6

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,22 @@ on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
ghc: ['8.6.5', '9.4.3']
os: ['ubuntu-latest', 'macos-latest']
ghc: ['8.6.5', '9.4.8', '9.6.3', '9.8.1']
os: ['ubuntu-latest']
include:
- ghc: '9.8.1'
os: 'macos-latest'
- ghc: '9.8.1'
os: 'windows-latest'

runs-on: ${{ matrix.os }}

name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- name: Cache
Expand Down
13 changes: 10 additions & 3 deletions string-qq.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,18 @@ Cabal-Version: >= 1.10
Build-Type: Simple
Synopsis: QuasiQuoter for non-interpolated strings, texts and bytestrings.
Description: QuasiQuoter for non-interpolated strings, texts and bytestrings, useful for writing multi-line IsString literals.
Tested-With: GHC==6.10.1, GHC==7.0.2, GHC==8.2.2, GHC==8.6.5, GHC==9.4.3, GHC==9.6.2
Tested-With:
GHC==6.10.1
GHC==7.0.2
GHC==8.2.2
GHC==8.6.5
GHC==9.4.8
GHC==9.6.3
GHC==9.8.1

Source-Repository head
type: git
location: git://github.com/audreyt/string-qq.git
location: https://github.com/audreyt/string-qq.git

library
default-extensions: TemplateHaskell
Expand All @@ -28,5 +35,5 @@ test-suite string-qq-test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Test.hs
build-depends: base > 3 && < 6, string-qq, HUnit >=1.6 && <1.7, text >=1.2 && <2.1
build-depends: base, string-qq, HUnit >=1.6 && <1.7, text >=1.2 && <3
default-language: Haskell2010