Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit c20d2da

Browse files
authored
Try out GitHub actions
1 parent 7cf1295 commit c20d2da

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/haskell.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Haskell CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-haskell@v1
13+
with:
14+
ghc-version: '8.6.5'
15+
cabal-version: '3.0'
16+
- name: Install dependencies
17+
run: |
18+
cabal update
19+
cabal install hoogle
20+
hoogle generate
21+
- name: Build
22+
run: cabal build
23+
# - name: Run tests
24+
# run: cabal test

0 commit comments

Comments
 (0)