Skip to content

Commit

Permalink
ci: add sui build and test job
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakBomjan committed May 9, 2024
1 parent 7a0a5c2 commit 0a7becf
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/sui-move-build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: SUI Move Build and Test

on:
pull_request:
branches:
- "main"
push:
branches:
- "**"

jobs:
build:
name: sui move build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install Rust
run: rustup update stable

- name: Install sui
run: cargo install --locked --git https://github.com/MystenLabs/sui.git --branch testnet sui

- name: build and test
run: bash ./scripts/optimize-move.sh

0 comments on commit 0a7becf

Please sign in to comment.