-
Notifications
You must be signed in to change notification settings - Fork 17
62 lines (49 loc) · 1.71 KB
/
test-marmalade.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Test Marmalade protocol
on:
push:
branches:
- main
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test-pact:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Pact
uses: ./.github/actions/setup-pact
with:
version: "4.10.0"
- name: Test pact/marmalade.repl
uses: ./.github/actions/repl
with:
target: pact/marmalade.repl
- name: Test pact/policy-manager/policy-manager.repl
uses: ./.github/actions/repl
with:
target: pact/policy-manager/policy-manager.repl
- name: Test concrete collection-policy
uses: ./.github/actions/repl
with:
target: pact/concrete-policies/collection-policy/collection-policy-v1.repl
- name: Test concrete non-fungible-policy
uses: ./.github/actions/repl
with:
target: pact/concrete-policies/non-fungible-policy/non-fungible-policy-v1.repl
- name: Test concrete royalty-policy
uses: ./.github/actions/repl
with:
target: pact/concrete-policies/royalty-policy/royalty-policy-v1.repl
- name: Test concrete guard-policy
uses: ./.github/actions/repl
with:
target: pact/concrete-policies/guard-policy/guard-policy-v1.repl
- name: Test conventional auction sale contract
uses: ./.github/actions/repl
with:
target: pact/sale-contracts/conventional-auction/conventional-auction.repl
- name: Test dutch auction sale contract
uses: ./.github/actions/repl
with:
target: pact/sale-contracts/dutch-auction/dutch-auction.repl