Skip to content

Commit abb88f6

Browse files
committed
Merge branch 'master' into fix-ci
2 parents 8946e26 + f58b0e6 commit abb88f6

File tree

4 files changed

+34
-39
lines changed

4 files changed

+34
-39
lines changed

.github/workflows/build.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
on: [push, pull_request]
2+
name: build
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
resolver:
10+
- lts-2
11+
- lts-3
12+
- lts-6
13+
- lts-7
14+
- lts-9
15+
- lts-11
16+
- lts-12
17+
- lts-13
18+
- lts-14
19+
- lts-15
20+
- lts-16
21+
- lts-17
22+
- lts-18
23+
name: Haskell GHC ${{ matrix.resolver }} build
24+
steps:
25+
- uses: actions/checkout@v2
26+
- uses: haskell/actions/setup@v1
27+
with:
28+
ghc-version: ${{ matrix.ghc }}
29+
enable-stack: true
30+
stack-version: "latest"
31+
- run: stack test --resolver ${{ matrix.resolver }}

.travis.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
*NOTE*: Since the death of the original author, this project is not actively maintained anymore.
1+
*NOTE*: Since the death of the original author, this project is not actively maintained anymore.
22
You might like [pretty-simple](http://hackage.haskell.org/package/pretty-simple) because its feature subsumes this package's.
33

4-
# unicode-show : readable unicode characters in print and show. [![Build Status](https://travis-ci.org/haskell-jp/unicode-show.svg?branch=master)](https://travis-ci.org/haskell-jp/unicode-show)
5-
4+
# unicode-show : readable unicode characters in print and show.
65

76
Provides a interactive printer for printing Unicode characters in ghci REPL. Our design goal is that `uprint` produces String representations that are valid Haskell `String` literals, and uses as many Unicode printable characters as possible. Hence
87
`read . ushow == id`

unicode-show.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cabal-version: >=1.10
2525
library
2626
hs-source-dirs: src
2727
exposed-modules: Text.Show.Unicode
28-
build-depends: base >= 4.7 && < 5
28+
build-depends: base >= 4.0 && < 5
2929
default-language: Haskell2010
3030

3131
test-suite unicode-show-test

0 commit comments

Comments
 (0)