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

fix cabal file #12

Merged
merged 2 commits into from
Jan 9, 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
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,10 @@ jobs:
stack-build-arguments: "--fast"
env:
STACK_YAML: ${{ matrix.stack-yaml }}

cabal-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cabal check --ignore=missing-upper-bounds
working-directory: recurly-client
4 changes: 4 additions & 0 deletions cabal-fields.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ homepage: https://github.com/freckle/recurly-client
license-file: LICENSE
license: MIT
maintainer: Freckle Education
synopsis: Client for Recurly subscription management
description:
Auto-generated from OpenAPI specification.
See Recurly API documentation at https://recurly.com/developers/api/
5 changes: 5 additions & 0 deletions recurly-client/recurly-client.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ homepage: https://github.com/freckle/recurly-client
license-file: LICENSE
license: MIT
maintainer: Freckle Education
synopsis: Client for Recurly subscription management
description:
Auto-generated from OpenAPI specification.
See Recurly API documentation at https://recurly.com/developers/api/

name: recurly-client
build-type: Simple

Expand Down
Loading