Skip to content

Commit

Permalink
migrate testing to github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
stepcut committed Apr 20, 2022
1 parent e5a5b12 commit 67f34fe
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 158 deletions.
155 changes: 0 additions & 155 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# happstack-server [![Hackage Status](https://img.shields.io/hackage/v/happstack-server.svg)][hackage] [![Build Status](https://travis-ci.com/Happstack/happstack-server.svg?branch=master)](https://travis-ci.com/Happstack/happstack-server)
# happstack-server [![Hackage Status](https://img.shields.io/hackage/v/happstack-server.svg)][hackage]

[hackage]: https://hackage.haskell.org/package/happstack-server

Expand Down
2 changes: 1 addition & 1 deletion happstack-server.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Category: Web, Happstack
Build-Type: Simple
Cabal-Version: >= 1.10
Extra-Source-Files: tests/Happstack/Server/Tests.hs README.md
tested-with: GHC==8.0.1, GHC==8.2.2, GHC==8.4.1, GHC==8.6.5, GHC==8.8.3, GHC==8.10.1, GHC==9.0.1
tested-with: GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.2

source-repository head
type: git
Expand Down
2 changes: 1 addition & 1 deletion src/Happstack/Server/Routing.hs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ https = guardRq rqSecure
--
-- > handler :: ServerPart Response
-- > handler =
-- > do methodOnly [GET, HEAD]
-- > do method [GET, HEAD]
-- > ...
method :: (ServerMonad m, MonadPlus m, MatchMethod method) => method -> m ()
method meth = guardRq $ \rq -> matchMethod meth (rqMethod rq)
Expand Down

0 comments on commit 67f34fe

Please sign in to comment.