Skip to content

Commit e6f4283

Browse files
authored
Merge pull request #8 from reflex-frp/ts@ghc-8.10
2 parents 2c3d55a + 37fa98e commit e6f4283

File tree

4 files changed

+44
-145
lines changed

4 files changed

+44
-145
lines changed

.github/workflows/haskell.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: github-action
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
matrix:
9+
ghc: ['8.6.5', '8.8.4', '8.10.2']
10+
os: ['ubuntu-latest', 'macos-latest']
11+
runs-on: ${{ matrix.os }}
12+
13+
name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-haskell@v1
17+
with:
18+
ghc-version: ${{ matrix.ghc }}
19+
- name: Cache
20+
uses: actions/cache@v1
21+
env:
22+
cache-name: cache-cabal
23+
with:
24+
path: ~/.cabal
25+
key: ${{ runner.os }}-${{ matrix.ghc }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }}
26+
restore-keys: |
27+
${{ runner.os }}-${{ matrix.ghc }}-build-${{ env.cache-name }}-
28+
${{ runner.os }}-${{ matrix.ghc }}-build-
29+
${{ runner.os }}-${{ matrix.ghc }}-
30+
${{ runner.os }}
31+
32+
- name: Install dependencies
33+
run: |
34+
cabal update
35+
cabal build --only-dependencies --enable-tests --enable-benchmarks
36+
- name: Build
37+
run: cabal build --enable-tests --enable-benchmarks all
38+
- name: Run tests
39+
run: cabal test all
40+
- name: Build Docs
41+
run: cabal haddock

.travis.yml

-142
This file was deleted.

ChangeLog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Revision history for reflex-fsnotify
22

3-
## Unreleased
3+
## 0.2.1.3
44

55
Support GHC 8.10
66

reflex-fsnotify.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: reflex-fsnotify
3-
version: 0.2.1.2
3+
version: 0.2.1.3
44
synopsis: Reflex FRP interface for watching files
55
description:
66
Watch files and directories for changes using a functional-reactive interface!
@@ -16,7 +16,7 @@ category: System, FRP
1616
build-type: Simple
1717
extra-source-files: ChangeLog.md
1818
README.md
19-
tested-with: GHC ==8.10.4 || ==8.8.3 || ==8.6.5
19+
tested-with: GHC ==8.10.2 || ==8.8.4 || ==8.6.5
2020

2121
library
2222
exposed-modules: Reflex.FSNotify

0 commit comments

Comments
 (0)