File tree 4 files changed +35
-28
lines changed
4 files changed +35
-28
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : push
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+
11
+ - uses : purescript-contrib/setup-purescript@main
12
+ with :
13
+ purescript : " 0.14.0-rc3"
14
+
15
+ - uses : actions/setup-node@v1
16
+ with :
17
+ node-version : " 12"
18
+
19
+ - name : Install dependencies
20
+ run : |
21
+ npm install -g bower
22
+ npm install
23
+ bower install --production
24
+
25
+ - name : Build source
26
+ run : npm run-script build
27
+
28
+ - name : Run tests
29
+ run : |
30
+ bower install
31
+ npm run-script test --if-present
Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
- ! /.travis.yml
3
+ ! /.github /
4
4
/bower_components /
5
5
/node_modules /
6
6
/output /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# purescript-parallel
2
2
3
3
[ ![ Latest release] ( http://img.shields.io/github/release/purescript/purescript-parallel.svg )] ( https://github.com/purescript/purescript-parallel/releases )
4
- [ ![ Build status] ( https://travis-ci.org /purescript/purescript-parallel.svg?branch=master )] ( https://travis-ci.org /purescript/purescript-parallel )
5
- [ ![ Dependency status ] ( https://img.shields.io/librariesio/github/ purescript/purescript -parallel.svg )] ( https://libraries.io/github/ purescript/purescript-parallel )
4
+ [ ![ Build status] ( https://github.com /purescript/purescript-parallel/workflows/CI/badge .svg?branch=master )] ( https://github.com /purescript/purescript-parallel/actions?query=workflow%3ACI+branch%3Amaster )
5
+ [ ![ Pursuit ] ( https://pursuit.purescript.org/packages/ purescript-parallel/badge )] ( https://pursuit. purescript.org/packages /purescript-parallel )
6
6
7
7
Classes for parallel composition and racing of asynchronous computations.
8
8
9
9
## Installation
10
10
11
11
```
12
- bower install purescript- parallel
12
+ spago install parallel
13
13
```
14
14
15
15
## Documentation
You can’t perform that action at this time.
0 commit comments