Skip to content

Commit e46bcc1

Browse files

File tree

2 files changed

+27
-10
lines changed

2 files changed

+27
-10
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Set up a PureScript toolchain
15+
uses: purescript-contrib/setup-purescript@main
16+
17+
- name: Cache PureScript dependencies
18+
uses: actions/cache@v2
19+
with:
20+
key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}
21+
path: |
22+
.spago
23+
output
24+
25+
- name: Run Test
26+
run: spago -x test.dhall test
27+

.travis.yml

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

0 commit comments

Comments
 (0)