File tree 4 files changed +44
-145
lines changed
4 files changed +44
-145
lines changed Original file line number Diff line number Diff line change
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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Revision history for reflex-fsnotify
2
2
3
- ## Unreleased
3
+ ## 0.2.1.3
4
4
5
5
Support GHC 8.10
6
6
Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : reflex-fsnotify
3
- version : 0.2.1.2
3
+ version : 0.2.1.3
4
4
synopsis : Reflex FRP interface for watching files
5
5
description :
6
6
Watch files and directories for changes using a functional-reactive interface!
@@ -16,7 +16,7 @@ category: System, FRP
16
16
build-type : Simple
17
17
extra-source-files : ChangeLog.md
18
18
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
20
20
21
21
library
22
22
exposed-modules : Reflex.FSNotify
You can’t perform that action at this time.
0 commit comments