Skip to content

Commit

Permalink
Merge branch 'master' into nitin/patch
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinprakash96 committed Feb 6, 2025
2 parents 3a72506 + d44c7e0 commit e7a3a7e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ jobs:
matrix:
include:
- os: ubuntu-latest
stack-yaml: stack-lts-19.yaml # GHC 9.0
extra-args: ""
- os: ubuntu-latest
stack-yaml: stack-lts-19.yaml
stack-yaml: stack-lts-20.yaml
extra-args: "--flag xlsx:microlens"
- os: ubuntu-latest
stack-yaml: stack-lts-20.yaml # GHC 9.2
Expand All @@ -25,7 +22,10 @@ jobs:
stack-yaml: stack-lts-21.yaml # GHC 9.4
extra-args: ""
- os: ubuntu-latest
stack-yaml: stack-nightly.yaml
stack-yaml: stack-lts-22.yaml # GHC 9.6
extra-args: ""
- os: ubuntu-latest # GHC 9.8
stack-yaml: stack-lts-23.yaml
extra-args: ""
steps:
- name: Clone project
Expand All @@ -39,6 +39,7 @@ jobs:
shell: bash
run: |
set -ex
sudo apt-get -y install libbz2-dev
stack upgrade
stack --version
stack test --fast --stack-yaml=${{ matrix.stack-yaml }} ${{ matrix.extra-args }}
2 changes: 1 addition & 1 deletion stack-lts-21.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resolver: lts-21.1
resolver: lts-21.25
packages:
- '.'
3 changes: 3 additions & 0 deletions stack-lts-22.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
resolver: lts-22.43
packages:
- '.'
3 changes: 3 additions & 0 deletions stack-lts-23.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
resolver: lts-23.7
packages:
- '.'
2 changes: 1 addition & 1 deletion xlsx.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Maintainer: [email protected]

Category: Codec
Build-type: Simple
Tested-with: GHC == 9.0.2, GHC == 9.2.8, GHC == 9.4.5, GHC == 9.6.2
Tested-with: GHC == 9.2.8, GHC == 9.4.8, GHC == 9.6.6, GHC == 9.8.4
Cabal-version: >=1.10

Flag microlens
Expand Down

0 comments on commit e7a3a7e

Please sign in to comment.