-
Notifications
You must be signed in to change notification settings - Fork 2.1k
37 lines (31 loc) · 827 Bytes
/
move.yml
File metadata and controls
37 lines (31 loc) · 827 Bytes
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
name: Move
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Sui
uses: cloudposse-github-actions/install-gh-releases@v1.4.0
with:
config: |-
mystenlabs/sui:
platform: ubuntu
arch: x86_64
extension-matching: true
- name: Run move tests
run: |
for dir in move/*; do
echo "Running sui move test in $dir"
sui move test --path $dir
done