We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 350ccc3 commit e46bcc1Copy full SHA for e46bcc1
.github/workflows/ci.yml
@@ -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
0 commit comments