-
Notifications
You must be signed in to change notification settings - Fork 13
53 lines (40 loc) · 1.28 KB
/
move_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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Move Test CI
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH
- name: Install Sui using Homebrew
run: brew install sui
- name: Run move tests in coupons
run: sui move test
working-directory: packages/coupons
- name: Run move tests in denylist
run: sui move test
working-directory: packages/denylist
- name: Run move tests in discounts
run: sui move test
working-directory: packages/discounts
- name: Run move tests in managed_names
run: sui move test
working-directory: packages/managed_names
- name: Run move tests in registration
run: sui move test
working-directory: packages/registration
- name: Run move tests in renewal
run: sui move test
working-directory: packages/renewal
- name: Run move tests in subdomains
run: sui move test
working-directory: packages/subdomains
- name: Run move tests in suins
run: sui move test
working-directory: packages/suins