File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 - name : Cache PureScript dependencies
2323 uses : actions/cache@v2
2424 with :
25- key : ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}
25+ key : ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}-4
2626 path : |
2727 .spago
2828 output
3131 run : spago install
3232
3333 - name : Build source
34- run : spago build --no-install --purs-args '--censor-lib --strict --censor-codes="UserDefinedWarning"'
34+ run : spago build --no-install
3535
3636# - name: Run tests
3737# 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
77Breaking changes:
88- Update project and deps to PureScript v0.15.0 (#90 by @JordanMartinez )
99- Drop deprecated ` MonadZero ` instance (#90 by @JordanMartinez )
10+ - Change precedence of ` withError ` operator to accommodate associativity changes in ` Control.Alt ` (#92 by @thomashoneyman )
1011
1112New features:
1213
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ assertConsume (Parser p) = Parser \s ->
105105withError :: forall a . Parser a -> String -> Parser a
106106withError p msg = p <|> fail msg
107107
108- infixl 3 withError as <?>
108+ infixl 4 withError as <?>
109109
110110-- | Parse a string between opening and closing markers.
111111between :: forall a open close . Parser open -> Parser close -> Parser a -> Parser a
You can’t perform that action at this time.
0 commit comments