Skip to content
Snippets Groups Projects
Commit 45e5cb82 authored by Erik de Castro Lopo's avatar Erik de Castro Lopo Committed by GitHub
Browse files

Merge pull request #10 from erikd/master

Add .travis.yml and convert README to markdown
parents 5d7011c1 c92ee47a
No related branches found
No related tags found
No related merge requests found
# language: haskell
# See http://www.reddit.com/r/haskell/comments/1os3f6/how_to_use_travisci_with_multiple_ghc_versions/
env:
- GHCVER=7.6.3
- GHCVER=7.8.4
- GHCVER=7.10.3
- GHCVER=8.0.1
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update
- sudo apt-get install cabal-install-1.24 ghc-$GHCVER
- export PATH=/opt/ghc/$GHCVER/bin:$PATH
install:
- cabal-1.24 update
- cabal-1.24 install --only-dependencies --enable-tests
script:
- cabal-1.24 configure --enable-tests
- cabal-1.24 build
- cabal-1.24 check
- cabal-1.24 haddock
- cabal-1.24 sdist
XHTML
-----
[![Build Status](https://secure.travis-ci.org/haskell/xhtml.svg?branch=master)](http://travis-ci.org/haskell/xhtml)
This package provides combinators for producing XHTML 1.0, including This package provides combinators for producing XHTML 1.0, including
the Strict, Transitional and Frameset variants. the Strict, Transitional and Frameset variants.
...@@ -20,10 +20,10 @@ Source-repository head ...@@ -20,10 +20,10 @@ Source-repository head
type: git type: git
location: https://github.com/haskell/xhtml location: https://github.com/haskell/xhtml
library library
Build-depends: base >= 4.0 && < 5.0 Build-depends: base >= 4.0 && < 5.0
Exposed-modules: Exposed-modules:
Text.XHtml, Text.XHtml,
Text.XHtml.Frameset, Text.XHtml.Frameset,
Text.XHtml.Strict, Text.XHtml.Strict,
Text.XHtml.Transitional, Text.XHtml.Transitional,
...@@ -39,6 +39,6 @@ library ...@@ -39,6 +39,6 @@ library
Text.XHtml.BlockTable, Text.XHtml.BlockTable,
Text.XHtml.Extras, Text.XHtml.Extras,
Text.XHtml.Internals Text.XHtml.Internals
ghc-options: -Wall ghc-options: -Wall -fwarn-tabs
Extensions: CPP Extensions: CPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment