-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (34 loc) · 1 KB
/
test.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
name: Run Ligo Tests
on:
workflow_dispatch: # adding the workflow_dispatch so it can be triggered manually
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Ligo version
uses: marigold-dev/[email protected]
with:
ligo_version: 0.69.0
command: version
working_directory: batcher
- name: Install deps
uses: marigold-dev/[email protected]
with:
ligo_version: 0.70.1
command: install
working_directory: batcher
- name: Run batcher test
uses: marigold-dev/[email protected]
with:
ligo_version: 0.70.1
command: run test test/test-batcher.mligo
working_directory: batcher
- name: Run market maker test
uses: marigold-dev/[email protected]
with:
ligo_version: 0.70.1
command: run test test/test-market-maker.mligo
working_directory: batcher