Skip to content
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
13 changes: 6 additions & 7 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
cabal:
- "3.10"
ghc:
- 9.0.2
- 9.2.8
- 9.4.8
- 9.6.4
- 9.6.6
- 9.8.2
- 9.10.1
services:
postgres:
image: postgres:15
Expand All @@ -40,7 +40,7 @@ jobs:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand All @@ -62,10 +62,9 @@ jobs:
stack:
- 2.15.5
stack-yaml:
- stack-9.0.2.yaml
- stack-9.2.8.yaml
- stack-9.4.8.yaml
- stack-9.6.4.yaml
- stack-9.6.6.yaml
- stack-9.8.2.yaml
services:
postgres:
Expand All @@ -76,9 +75,9 @@ jobs:
- 5432:5432
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
name: Setup Haskell Stack
with:
stack-version: ${{ matrix.stack }}
Expand Down
8 changes: 4 additions & 4 deletions postgresql-simple-named.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ category: Database, PostgreSQL
build-type: Simple
extra-source-files: README.md
extra-doc-files: CHANGELOG.md
tested-with: GHC == 9.0.2
, GHC == 9.2.8
tested-with: GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.4
, GHC == 9.6.6
, GHC == 9.8.2
, GHC == 9.10.1

source-repository head
type: git
location: https://github.com/Holmusk/postgresql-simple-named.git

common common-options
build-depends: base >= 4.11 && < 4.20
build-depends: base >= 4.11 && < 4.21

ghc-options: -Wall
-Wincomplete-uni-patterns
Expand Down
1 change: 0 additions & 1 deletion stack-8.10.7.yaml

This file was deleted.

1 change: 0 additions & 1 deletion stack-9.0.2.yaml

This file was deleted.

1 change: 0 additions & 1 deletion stack-9.6.4.yaml

This file was deleted.

1 change: 1 addition & 0 deletions stack-9.6.6.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolver: lts-22.36
Loading