-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 1.17 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: CI
on: [push, pull_request]
jobs:
check-opam-sanity:
name: Check sanity of opam/Satyristes
runs-on: ubuntu-latest
container:
image: amutake/satysfi:0.0.5
steps:
- uses: actions/checkout@v1
- name: Try install derive
run: |
export HOME=/root
eval $(opam env)
opam update
opam pin add "file://${PWD}"
satyrographos install -l derive
- name: Try compile file
run: |
export HOME=/root
eval $(opam env)
satysfi __test__/satysrc/check-opam.saty
regression-test:
name: Regression tests
runs-on: ubuntu-latest
container:
image: zeptometer/satysfi-yarn-diff-pdf:latest
steps:
- uses: actions/checkout@v1
- name: Install Yarn dependencies
run: yarn install
- name: Install Satyrographos dependencies
run: |
export HOME=/root
eval $(opam env)
opam update
opam pin add --verbose --yes "."
satyrographos install -l derive
- name: Run regression tests
run: |
export HOME=/root
eval $(opam env)
yarn test --ci