Skip to content

Commit b4f7170

Browse files
committedApr 5, 2020
Merge branch 'dev-2.0.0' into GH-47
2 parents d27b5c3 + f9e520a commit b4f7170

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+1077
-1979
lines changed
 

‎.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI
22

3-
on: push
3+
on: [push, pull_request]
44

55
jobs:
66
regression-test:
@@ -12,9 +12,10 @@ jobs:
1212
- name: Install Apt dependencies
1313
run: |
1414
apt-get update && apt install -y gnupg
15+
curl -sL https://deb.nodesource.com/setup_10.x | bash -
1516
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
1617
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
17-
apt-get update && apt-get install -y yarn graphicsmagick
18+
apt-get update && apt-get install -y nodejs yarn graphicsmagick
1819
- name: Install Yarn dependencies
1920
run: |
2021
yarn install
@@ -24,7 +25,7 @@ jobs:
2425
eval $(opam env)
2526
opam update
2627
opam pin add --verbose --yes "."
27-
satyrographos install
28+
satyrographos install -l base
2829
- name: Run regression tests
2930
run: |
3031
export HOME=/root

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# satysfi-base
22

3+
[![build status](https://github.com/nyuichi/satysfi-base/workflows/CI/badge.svg)](https://github.com/nyuichi/satysfi-base/actions?query=workflow%3ACI)
4+
35
## TL;DR
46

57
```ocaml

0 commit comments

Comments
 (0)
Please sign in to comment.