Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ['8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10', '9.12']
ghc: ['8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10', '9.12', '9.14']
include:
- os: windows-latest
ghc: 'latest'
- os: macOS-latest
ghc: 'latest'
## Already covered by '9.4'
## Already covered by '9.14'
# - os: ubuntu-latest
# ghc: 'latest'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: ${{ matrix.ghc }}
ghcup-release-channel: ${{ matrix.ghcup-release-channel }}
- name: Update cabal package database
run: cabal update
- uses: actions/cache@v4
- uses: actions/cache@v5
name: Cache cabal stuff
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion primitive.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Library
Data.Primitive.Internal.Operations
Data.Primitive.Internal.Read

Build-Depends: base >= 4.10 && < 4.22
Build-Depends: base >= 4.10 && < 4.23
, deepseq >= 1.1 && < 1.6
, transformers >= 0.5 && < 0.7
, template-haskell >= 2.11
Expand Down
Loading