File tree Expand file tree Collapse file tree 4 files changed +35
-24
lines changed Expand file tree Collapse file tree 4 files changed +35
-24
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
+ psa : " 0.8.0"
15
+
16
+ - uses : actions/setup-node@v1
17
+ with :
18
+ node-version : " 12"
19
+
20
+ - name : Install dependencies
21
+ run : |
22
+ npm install -g bower
23
+ npm install
24
+ bower install --production
25
+
26
+ - name : Build
27
+ run : npm run-script build
28
+
29
+ - name : Test
30
+ run : |
31
+ bower install
32
+ npm run-script test --if-present
Original file line number Diff line number Diff line change 1
1
/. *
2
+ ! /.github
2
3
! /.gitignore
3
4
! /.travis.yml
4
5
/bower_components /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# purescript-semirings
2
2
3
3
[ ![ Latest release] ( http://img.shields.io/github/release/purescript/purescript-semirings.svg )] ( https://github.com/purescript/purescript-semirings/releases )
4
- [ ![ Build status ] ( https://travis-ci.org /purescript/purescript-semirings.svg?branch=master )] ( https://travis-ci.org /purescript/purescript-semirings )
4
+ [ ![ Build Status ] ( https://github.com /purescript/purescript-semirings/workflows/CI/badge .svg?branch=master )] ( https://github.com /purescript/purescript-semirings/actions?query=workflow%3ACI+branch%3Amaster )
5
5
6
6
Semiring instances and functions
7
7
8
8
## Installation
9
9
10
10
```
11
- bower install purescript- semirings
11
+ spago install semirings
12
12
```
13
13
14
14
## Documentation
You can’t perform that action at this time.
0 commit comments