Skip to content

Commit 8b9a48e

Browse files
committed
ci: fixup workflow
1 parent a097ae0 commit 8b9a48e

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/haskell.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
name: Haskell CI
22

3-
on:
4-
push:
5-
branches: [ develop ]
6-
pull_request:
7-
branches: [ develop ]
3+
on: [push, pull_request]
84

95
jobs:
106
build:
117

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']
1413
steps:
1514
- uses: actions/checkout@v2
1615
- uses: actions/setup-haskell@v1
1716
with:
18-
ghc-version: ['8.6.5', '8.8.4']
17+
ghc-version: ${{ matrix.ghc }}
1918
cabal-version: '3.0'
2019

2120
- name: Cache

ChangeLog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for reflex-ghci
22

3+
## 0.1.4.2
4+
5+
* Tests: Ensure proper shutdown.
6+
37
## 0.1.4.1
48

59
* Library: Require at least version 0.7.1 of `reflex`.

reflex-ghci.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: reflex-ghci
3-
version: 0.1.4.1
3+
version: 0.1.4.2
44
synopsis: A GHCi widget library for use in reflex applications
55
description:
66
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
2525
Reflex.Process.GHCi
2626
Reflex.Vty.GHCi
2727
build-depends:
28-
base >= 4.12 && < 4.13
28+
base >= 4.12 && < 4.14
2929
, bytestring >= 0.10 && < 0.11
3030
, directory >= 1.3 && < 1.4
3131
, filepath >= 1.4 && < 1.5

0 commit comments

Comments
 (0)