File tree 3 files changed +13
-10
lines changed
3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
1
name : Haskell CI
2
2
3
- on :
4
- push :
5
- branches : [ develop ]
6
- pull_request :
7
- branches : [ develop ]
3
+ on : [push, pull_request]
8
4
9
5
jobs :
10
6
build :
11
7
12
- runs-on : ubuntu-latest
13
-
8
+ runs-on : ${{ matrix.os }}
9
+ strategy :
10
+ matrix :
11
+ ghc : ['8.6.5', '8.8.4']
12
+ os : ['ubuntu-latest']
14
13
steps :
15
14
- uses : actions/checkout@v2
16
15
- uses : actions/setup-haskell@v1
17
16
with :
18
- ghc-version : ['8.6.5', '8.8.4']
17
+ ghc-version : ${{ matrix.ghc }}
19
18
cabal-version : ' 3.0'
20
19
21
20
- name : Cache
Original file line number Diff line number Diff line change 1
1
# Revision history for reflex-ghci
2
2
3
+ ## 0.1.4.2
4
+
5
+ * Tests: Ensure proper shutdown.
6
+
3
7
## 0.1.4.1
4
8
5
9
* Library: Require at least version 0.7.1 of ` reflex ` .
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.4
2
2
name : reflex-ghci
3
- version : 0.1.4.1
3
+ version : 0.1.4.2
4
4
synopsis : A GHCi widget library for use in reflex applications
5
5
description :
6
6
Run GHCi from within a Reflex FRP (<https://reflex-frp.org>) application and interact with it using a functional reactive interface.
@@ -25,7 +25,7 @@ library
25
25
Reflex.Process.GHCi
26
26
Reflex.Vty.GHCi
27
27
build-depends :
28
- base >= 4.12 && < 4.13
28
+ base >= 4.12 && < 4.14
29
29
, bytestring >= 0.10 && < 0.11
30
30
, directory >= 1.3 && < 1.4
31
31
, filepath >= 1.4 && < 1.5
You can’t perform that action at this time.
0 commit comments