chore: remove explicit Sui
dependency
#2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
paths: | |
- target_chains/sui/contracts/** | |
push: | |
branches: | |
- main | |
paths: | |
- target_chains/sui/contracts/** | |
name: Sui Contracts | |
jobs: | |
sui-tests: | |
name: Sui tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: target_chains/sui/contracts/ | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update rust | |
run: rustup update stable | |
- name: Install Sui CLI | |
run: cargo install --locked --git https://github.com/MystenLabs/sui.git --rev 09b2081498366df936abae26eea4b2d5cafb2788 sui | |
- name: Run tests | |
run: sui move test |