Skip to content

Commit 6cacf60

Browse files
committedJan 14, 2022
Fix version bounds and enable github actions CI
1 parent 22ad814 commit 6cacf60

14 files changed

+153
-154
lines changed
 

‎.github/workflows/test.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
on: [push]
2+
3+
name: Test
4+
5+
jobs:
6+
build:
7+
name: Build and test all the packages
8+
runs-on: ${{ matrix.os }}
9+
10+
strategy:
11+
matrix:
12+
ghc: ['8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2']
13+
os: ['ubuntu-latest', 'macos-latest']
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Cache Haskell dependencies
19+
uses: actions/cache@v2
20+
with:
21+
path: |
22+
~/.cabal/packages
23+
~/.cabal/store
24+
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('**/*.cabal', 'configurations/ghc-${{ matrix.ghc }}.project') }}
25+
restore-keys: |
26+
${{ runner.os }}-${{ matrix.ghc }}-
27+
${{ runner.os }}-
28+
29+
- uses: haskell/actions/setup@v1
30+
with:
31+
ghc-version: ${{ matrix.ghc }}
32+
33+
- name: Build
34+
run: cabal build all --project-file ./configurations/ghc-${{ matrix.ghc }}.project
35+
36+
- name: Test
37+
run: cabal test all --enable-tests --project-file ./configurations/ghc-${{ matrix.ghc }}.project

‎.travis.yml

-120
This file was deleted.

‎cabal.project

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
packages: chell/, chell-hunit/, chell-quickcheck/
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
flags: +color-output

‎chell-hunit/chell-hunit.cabal

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
cabal-version: 3.0
2+
13
name: chell-hunit
24
version: 0.3
35

@@ -9,16 +11,13 @@ license-file: license.txt
911
author: John Millikin <john@john-millikin.com>
1012
maintainer: Chris Martin, Julie Moronuki
1113
build-type: Simple
12-
cabal-version: >= 1.6
1314

1415
homepage: https://github.com/typeclasses/chell
1516
bug-reports: https://github.com/typeclasses/chell/issues
1617

1718
description:
1819
HUnit support for the <https://hackage.haskell.org/package/chell Chell> testing library.
1920

20-
tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.3
21-
2221
extra-source-files:
2322
changelog.md
2423

@@ -30,7 +29,7 @@ library
3029
ghc-options: -Wall
3130

3231
build-depends:
33-
base >= 4.0 && < 5.0
32+
base >= 4.10 && < 4.17
3433
, chell >= 0.3 && < 0.6
3534
, HUnit >= 1.3 && < 1.7
3635

‎chell-quickcheck/chell-quickcheck.cabal

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
cabal-version: 3.0
2+
13
name: chell-quickcheck
24
version: 0.2.5.2
35

@@ -9,16 +11,13 @@ license-file: license.txt
911
author: John Millikin <john@john-millikin.com>
1012
maintainer: Chris Martin, Julie Moronuki
1113
build-type: Simple
12-
cabal-version: >= 1.6
1314

1415
homepage: https://github.com/typeclasses/chell
1516
bug-reports: https://github.com/typeclasses/chell/issues
1617

1718
description:
1819
QuickCheck support for the <https://hackage.haskell.org/package/chell Chell> testing library.
1920

20-
tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.3
21-
2221
extra-source-files:
2322
changelog.md
2423

@@ -30,10 +29,10 @@ library
3029
ghc-options: -Wall
3130

3231
build-depends:
33-
base >= 4.0 && < 5.0
32+
base >= 4.10 && < 4.17
3433
, chell >= 0.3 && < 0.6
35-
, QuickCheck >= 2.3 && < 2.13
36-
, random
34+
, QuickCheck >= 2.7 && < 2.15
35+
, random >= 1.1 && < 1.3
3736

3837
exposed-modules:
3938
Test.Chell.QuickCheck

‎chell/chell.cabal

+19-20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
cabal-version: 3.0
2+
13
name: chell
24
version: 0.5
35

@@ -9,45 +11,42 @@ license-file: license.txt
911
author: John Millikin <john@john-millikin.com>
1012
maintainer: Chris Martin, Julie Moronuki
1113
build-type: Simple
12-
cabal-version: >= 1.6
1314

1415
homepage: https://github.com/typeclasses/chell
1516
bug-reports: https://github.com/typeclasses/chell/issues
1617

17-
tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.3
18-
1918
description:
2019
Chell is a simple and intuitive library for automated testing. It natively
2120
supports assertion-based testing, and can use companion libraries
2221
such as @chell-quickcheck@ to support more complex testing strategies.
23-
.
24-
An example test suite, which verifies the behavior of artithmetic operators.
25-
.
22+
23+
An example test suite, which verifies the behavior of arithmetic operators.
24+
2625
@
2726
&#x7b;-\# LANGUAGE TemplateHaskell \#-&#x7d;
28-
.
27+
2928
import Test.Chell
30-
.
29+
3130
tests_Math :: Suite
3231
tests_Math = suite \"math\"
3332
&#x20; [ test_Addition
3433
&#x20; , test_Subtraction
3534
&#x20; ]
36-
.
35+
3736
test_Addition :: Test
3837
test_Addition = assertions \"addition\" $ do
3938
&#x20; $expect (equal (2 + 1) 3)
4039
&#x20; $expect (equal (1 + 2) 3)
41-
.
40+
4241
test_Subtraction :: Test
4342
test_Subtraction = assertions \"subtraction\" $ do
4443
&#x20; $expect (equal (2 - 1) 1)
4544
&#x20; $expect (equal (1 - 2) (-1))
46-
.
45+
4746
main :: IO ()
4847
main = defaultMain [tests_Math]
4948
@
50-
.
49+
5150
@
5251
$ ghc --make chell-example.hs
5352
$ ./chell-example
@@ -69,18 +68,18 @@ library
6968
ghc-options: -Wall
7069

7170
build-depends:
72-
base >= 4.1 && < 5.0
73-
, bytestring >= 0.9
74-
, options >= 1.0 && < 2.0
71+
base >= 4.10 && < 4.17
72+
, bytestring >= 0.10.8.2 && < 0.12
73+
, options >= 1.2.1 && < 1.3
7574
, patience >= 0.2 && < 0.4
76-
, random >= 1.0
77-
, template-haskell >= 2.3
78-
, text
79-
, transformers >= 0.2
75+
, random >= 1.1 && < 1.3
76+
, template-haskell >= 2.12 && < 2.19
77+
, text >= 1.2.3 && < 1.2.6
78+
, transformers >= 0.5.2 && < 0.6
8079

8180
if flag(color-output)
8281
build-depends:
83-
ansi-terminal >= 0.5 && < 0.9
82+
ansi-terminal >= 0.8 && < 0.12
8483

8584
exposed-modules:
8685
Test.Chell

‎configurations/ghc-8.10.project

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
package chell
4+
flags: +color-output
5+
6+
constraints:
7+
ansi-terminal ^>= 0.10
8+
, base ^>= 4.14
9+
, bytestring == 0.11.0.0
10+
, patience == 0.2.1.1
11+
, QuickCheck ^>= 2.13
12+
, template-haskell ^>= 2.16
13+
, text == 1.2.4.*

‎configurations/ghc-8.2.project

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
package chell
4+
flags: +color-output
5+
6+
constraints:
7+
ansi-terminal ^>= 0.8
8+
, base ^>= 4.10
9+
, bytestring == 0.10.8.2
10+
, HUnit ^>= 1.3
11+
, patience == 0.2.0.0
12+
, QuickCheck ^>= 2.7
13+
, random == 1.1
14+
, template-haskell ^>= 2.12
15+
, transformers == 0.5.2.*

‎configurations/ghc-8.4.project

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
package chell
4+
flags: +color-output
5+
6+
constraints:
7+
base ^>= 4.11
8+
, QuickCheck ^>= 2.8
9+
, template-haskell ^>= 2.13
10+
, text == 1.2.3.*

‎configurations/ghc-8.6.project

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
package chell
4+
flags: +color-output
5+
6+
constraints:
7+
ansi-terminal ^>= 0.9
8+
, base ^>= 4.12
9+
, patience == 0.2.1.0
10+
, QuickCheck ^>= 2.9
11+
, template-haskell ^>= 2.14

‎configurations/ghc-8.8.project

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
package chell
4+
flags: +color-output
5+
6+
constraints:
7+
base ^>= 4.13
8+
, bytestring == 0.10.8.2
9+
, QuickCheck ^>= 2.13
10+
, template-haskell ^>= 2.15

‎configurations/ghc-9.0.project

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
package chell
4+
flags: +color-output
5+
6+
constraints:
7+
base ^>= 4.15
8+
, bytestring == 0.11.1.0
9+
, QuickCheck ^>= 2.14
10+
, random == 1.2.0
11+
, template-haskell ^>= 2.17
12+
, transformers == 0.5.6.*

‎configurations/ghc-9.2.project

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
packages: chell, chell-hunit, chell-quickcheck
2+
3+
package chell
4+
flags: +color-output
5+
6+
constraints:
7+
ansi-terminal ^>= 0.11
8+
, base ^>= 4.16
9+
, bytestring == 0.11.2.0
10+
, HUnit ^>= 1.6
11+
, patience == 0.3
12+
, QuickCheck ^>= 2.14
13+
, random == 1.2.1
14+
, template-haskell ^>= 2.18
15+
, text == 1.2.5.*

‎stack.yaml

-3
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.