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 classy-prelude.cabal version to match package.yaml #234

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: 11 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,17 @@ jobs:
ghc --version
stack --version
stack test --system-ghc $extraLibDirs $extraIncludeDirsLLVM $extraIncludeDirsFFI --fast --no-terminal --snapshot=lts-$snapshot
- name: Check for Source Changes
shell: bash
run: |
if [ -n "$(git status --porcelain)" ]
then
>&2 echo 'ERROR: Source Changed After Build'
>&2 git diff
>&2 git status
>&2 echo 'ERROR: Source Changed After Build'
exit 1
fi

Cabal:
name: Cabal
Expand Down
2 changes: 1 addition & 1 deletion classy-prelude/classy-prelude.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: classy-prelude
version: 1.5.0.2
version: 1.5.0.3
synopsis: A typeclass-based Prelude.
description: See docs and README at <http://www.stackage.org/package/classy-prelude>
category: Control, Prelude
Expand Down
Loading