File tree Expand file tree Collapse file tree 5 files changed +30
-19
lines changed Expand file tree Collapse file tree 5 files changed +30
-19
lines changed Original file line number Diff line number Diff line change 1- on : [push, pull_request]
1+ on : [pull_request]
22
33name : build
44
2121 cabal-version : ${{ matrix.cabal }}
2222
2323 - run : cabal build --only-dependencies -j2
24- - run : cabal build
24+ - run : cabal install hspec-discover
25+ - run : cabal test
Original file line number Diff line number Diff line change 1212codex.tags
1313* .out
1414* .eventlog
15+ dist-newstyle /
Original file line number Diff line number Diff line change 1+ # Change Log
2+
3+ ## [ 0.0.0.1] - 2017-10-24
4+
5+ Initial release.
6+
7+ [ 0.0.0.1 ] : https://github.com/haskell-game/aeson-tiled/releases/tag/v0.0.0.1
Original file line number Diff line number Diff line change 11name : aeson-tiled
22version : 0.0.1.0
33synopsis : Aeson instances for the Tiled map editor.
4- description : The mighty Tiled 2d map editor is an open source
4+ description : The mighty Tiled 2D map editor is an open source
55 app for creating tile based level maps. This package provides
66 types and aeson instances to read Tiled json files.
7- homepage : https://github.com/schell /aeson-tiled#readme
7+ homepage : https://github.com/haskell-game /aeson-tiled
88license : BSD3
99license-file : LICENSE
10+ 1011author : Schell Scivally
11- 12- copyright : Copyright : (c) 2017 Schell Scivally
13- category : Game
12+ copyright : (c) 2017 Schell Scivally
13+ category : Game Engine
1414build-type : Simple
15- extra-source-files : README.md
1615cabal-version : >= 1.10
1716
17+ extra-source-files :
18+ README.md,
19+ ChangeLog.md
20+
1821library
1922 hs-source-dirs : src
2023 exposed-modules : Data.Aeson.Tiled
@@ -26,15 +29,13 @@ library
2629 , vector >= 0.11 && < 1
2730 default-language : Haskell2010
2831
29- executable aeson-tiled-exe
30- hs-source-dirs : app
31- main-is : Main.hs
32- ghc-options : -threaded -rtsopts -with-rtsopts=-N
33- build-depends : base
34- , aeson-tiled
35- default-language : Haskell2010
32+ flag tests
33+ manual : True
34+ default : False
3635
3736test-suite aeson-tiled-test
37+ if !flag(tests)
38+ buildable : False
3839 type : exitcode-stdio-1.0
3940 hs-source-dirs : test
4041 main-is : Spec.hs
@@ -46,7 +47,3 @@ test-suite aeson-tiled-test
4647 , bytestring
4748 ghc-options : -threaded -rtsopts -with-rtsopts=-N
4849 default-language : Haskell2010
49-
50- source-repository head
51- type : git
52- location : https://github.com/schell/aeson-tiled
Original file line number Diff line number Diff line change 1+ packages : .
2+
3+ package aeson-tiled
4+ ghc-options : -Wall -Wcompat
5+ flags : +tests
You can’t perform that action at this time.
0 commit comments