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
22 changes: 11 additions & 11 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.19.20250216
# version: 0.19.20250506
#
# REGENDATA ("0.19.20250216",["github","HsYAML.cabal"])
# REGENDATA ("0.19.20250506",["github","HsYAML.cabal"])
#
name: Haskell-CI
on:
Expand All @@ -32,24 +32,24 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.1
- compiler: ghc-9.12.2
compilerKind: ghc
compilerVersion: 9.12.1
compilerVersion: 9.12.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.10.1
- compiler: ghc-9.10.2
compilerKind: ghc
compilerVersion: 9.10.1
compilerVersion: 9.10.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.8.4
compilerKind: ghc
compilerVersion: 9.8.4
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.6.6
- compiler: ghc-9.6.7
compilerKind: ghc
compilerVersion: 9.6.6
compilerVersion: 9.6.7
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.8
Expand Down Expand Up @@ -106,12 +106,12 @@ jobs:
- name: Install GHCup
run: |
mkdir -p "$HOME/.ghcup/bin"
curl -sL https://downloads.haskell.org/ghcup/0.1.30.0/x86_64-linux-ghcup-0.1.30.0 > "$HOME/.ghcup/bin/ghcup"
curl -sL https://downloads.haskell.org/ghcup/0.1.50.1/x86_64-linux-ghcup-0.1.50.1 > "$HOME/.ghcup/bin/ghcup"
chmod a+x "$HOME/.ghcup/bin/ghcup"
- name: Install cabal-install
run: |
"$HOME/.ghcup/bin/ghcup" install cabal 3.12.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
echo "CABAL=$HOME/.ghcup/bin/cabal-3.12.1.0 -vnormal+nowrap" >> "$GITHUB_ENV"
"$HOME/.ghcup/bin/ghcup" install cabal 3.14.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.2.0 -vnormal+nowrap" >> "$GITHUB_ENV"
- name: Install GHC (GHCup)
if: matrix.setup-method == 'ghcup'
run: |
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
matrix:
os: [ubuntu-latest]
plan:
- ghc: '9.10.1'
resolver: 'nightly-2025-03-11'
- ghc: '9.10.2'
resolver: 'nightly-2025-06-18'
- ghc: '9.8.4'
resolver: 'lts-23.14'
- ghc: '9.6.6'
resolver: 'lts-22.43'
resolver: 'lts-23.25'
- ghc: '9.6.7'
resolver: 'lts-22.44'
- ghc: '9.4.8'
resolver: 'lts-21.25'
- ghc: '9.2.8'
Expand All @@ -50,13 +50,13 @@ jobs:
include:
- os: windows-latest
plan:
ghc: '9.10.1'
resolver: 'nightly-2025-03-11'
ghc: '9.10.2'
resolver: 'nightly-2025-06-18'

- os: macos-latest
plan:
ghc: '9.10.1'
resolver: 'nightly-2025-03-11'
ghc: '9.10.2'
resolver: 'nightly-2025-06-18'

runs-on: ${{ matrix.os }}
env:
Expand Down
9 changes: 5 additions & 4 deletions HsYAML.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
cabal-version: 1.14
name: HsYAML
version: 0.2.1.5
x-revision: 1

synopsis: Pure Haskell YAML 1.2 processor
homepage: https://github.com/haskell-hvr/HsYAML
Expand All @@ -15,10 +16,10 @@ copyright: 2015-2018 Herbert Valerio Riedel
category: Text
build-type: Simple
tested-with:
GHC == 9.12.1
GHC == 9.10.1
GHC == 9.12.2
GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.6
GHC == 9.6.7
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
Expand Down Expand Up @@ -148,6 +149,6 @@ test-suite tests
, mtl
-- non-inherited
-- lower bounds chosen from lts-11.22 (GHC 8.2)
, QuickCheck >= 2.10.1 && < 2.16
, QuickCheck >= 2.10.1 && < 3
, tasty >= 1.0.1.1 && < 1.6
, tasty-quickcheck >= 0.9.2 && < 1
Loading