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
2 changes: 1 addition & 1 deletion .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
echo "packages: ${PKGDIR_cabal_install_parsers}" >> cabal.project
cat >> cabal.project <<EOF
package *
ghc-options: -Werror=missing-methods
ghc-options: -Werror=missing-methods -Werror=missing-fields
EOF
cat >> cabal.project <<EOF
package haskell-ci
Expand Down
2 changes: 1 addition & 1 deletion haskell-ci.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: haskell-ci
version: 0.15.20230304
version: 0.15.20230310
synopsis: Cabal package script generator for Travis-CI
description:
Script generator (@haskell-ci@) for
Expand Down
2 changes: 1 addition & 1 deletion src/HaskellCI/GitHub.hs
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ makeGitHub _argv config@Config {..} gitconfig prj jobs@JobVersions {..} = do
echo_if_to range "cabal.project" $ " ghc-options: -Werror=missing-methods"
PackageScopeAll -> cat "cabal.project" $ unlines
[ "package *"
, " ghc-options: -Werror=missing-methods"
, " ghc-options: -Werror=missing-methods -Werror=missing-fields"
]

-- extra cabal.project fields
Expand Down