-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Github Actions and fix Doctest (#352)
* Fix doctests * Regenerate haskell-ci with config - use latest haskell-ci - configure haskell-ci to use doctest * Update tested with compiler - update cabal tested-with field - update .mergify.yaml to new compiler - restore note about mergify in haskell-ci
- Loading branch information
Showing
5 changed files
with
88 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
-- See cabal.haskell-ci in the tool repository for all field explanations | ||
-- https://github.com/haskell-CI/haskell-ci/blob/master/cabal.haskell-ci | ||
|
||
-- --no-tests --no-benchmarks build is useful to verify that package | ||
-- builds when less constrained | ||
-- But Swarm constrains all library dependencies and tests almost not at all | ||
no-tests-no-benchmarks: False | ||
unconstrained: False | ||
|
||
-- Run cabal-docspec | ||
docspec: True | ||
|
||
-- Build haddocks. Accepts booleans or version range. | ||
haddock: True | ||
|
||
-- Build benchmarks. There are no way to run benchmarks. Accepts booleans or version range. | ||
-- Swarm has benchmarks so at least build them :) | ||
benchmarks: True | ||
|
||
-- TODO: enable HLint | ||
|
||
-- Run HLint | ||
-- hlint: True | ||
-- hlint-job: 9.0.2 | ||
-- hlint-yaml: .hlint.yaml | ||
-- hlint-download-binary: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ maintainer: [email protected] | |
bug-reports: https://github.com/swarm-game/swarm/issues | ||
copyright: Brent Yorgey 2021 | ||
category: Game | ||
tested-with: GHC ==8.10.4 || ==9.0.1 | ||
tested-with: GHC ==8.10.7 || ==9.0.2 | ||
extra-source-files: CHANGELOG.md | ||
example/*.sw | ||
data-dir: data/ | ||
|