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

Install bz2 and bump GHC/LTS versions #182

Merged
merged 2 commits into from
Feb 5, 2025
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
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