Skip to content

Commit 8d3f28f

Browse files
authored
Switch to github CI (#66)
1 parent 697a9b0 commit 8d3f28f

File tree

2 files changed

+49
-30
lines changed

2 files changed

+49
-30
lines changed

.github/workflows/ci.yaml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Ci
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- "*"
9+
pull_request: {}
10+
11+
defaults:
12+
run:
13+
shell: bash
14+
15+
jobs:
16+
all:
17+
name: All
18+
runs-on: ubuntu-latest
19+
strategy:
20+
matrix:
21+
stack_yaml:
22+
- stack-ghc-7.10.yaml
23+
- stack-ghc-8.0.yaml
24+
- stack-ghc-8.2.yaml
25+
- stack-ghc-8.4.yaml
26+
- stack.yaml
27+
steps:
28+
- name: Set STACK_YAML
29+
run: echo STACK_YAML=${{ matrix.stack_yaml }} >> $GITHUB_ENV
30+
31+
- uses: actions/checkout@v2
32+
33+
- name: Setup
34+
run: stack setup
35+
36+
- name: Info
37+
run: |
38+
stack --version
39+
stack ghc -- --version
40+
cat $STACK_YAML | grep resolver
41+
42+
- name: Install Dependencies
43+
run: stack build --test --only-dependencies --haddock-deps
44+
45+
- name: Test
46+
run: stack test --ghc-options=-Werror
47+
48+
- name: Docs
49+
run: stack haddock

.travis.yml

-30
This file was deleted.

0 commit comments

Comments
 (0)