chore: remove unused action_index #61
This file contains 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
# Run unit tests against sui testnet | |
name: Run Sui Move Tests | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
move-test: | |
runs-on: ubuntu-latest | |
container: | |
image: mysten/sui-tools:testnet | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: install git | |
run: apt-get install -y git | |
- name: run account.tech tests | |
run: sui move test -p ./packages/protocol --test && sui move test -p ./packages/config --test && sui move test -p ./packages/actions --test && sui move test -p ./packages/extensions --test |