File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 22
22
- name : Cache PureScript dependencies
23
23
uses : actions/cache@v2
24
24
with :
25
- key : ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}
25
+ key : ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}-4
26
26
path : |
27
27
.spago
28
28
output
31
31
run : spago install
32
32
33
33
- name : Build source
34
- run : spago build --no-install --purs-args '--censor-lib --strict --censor-codes="UserDefinedWarning"'
34
+ run : spago build --no-install
35
35
36
36
# - name: Run tests
37
37
# run: spago test --no-install
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Notable changes to this project are documented in this file. The format is based
7
7
Breaking changes:
8
8
- Update project and deps to PureScript v0.15.0 (#90 by @JordanMartinez )
9
9
- Drop deprecated ` MonadZero ` instance (#90 by @JordanMartinez )
10
+ - Change precedence of ` withError ` operator to accommodate associativity changes in ` Control.Alt ` (#92 by @thomashoneyman )
10
11
11
12
New features:
12
13
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ assertConsume (Parser p) = Parser \s ->
105
105
withError :: forall a . Parser a -> String -> Parser a
106
106
withError p msg = p <|> fail msg
107
107
108
- infixl 3 withError as <?>
108
+ infixl 4 withError as <?>
109
109
110
110
-- | Parse a string between opening and closing markers.
111
111
between :: forall a open close . Parser open -> Parser close -> Parser a -> Parser a
You can’t perform that action at this time.
0 commit comments