feat(abi)!: add an option to read and write raw bytes to an abi to allow for more complex structs to be encoded/decoded. #1053
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
name: Move Tests | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-move: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup tools | |
uses: ./.github/actions/setup-tools | |
with: | |
install-sui: 'true' | |
install-nodejs: 'true' | |
- name: Build Move Modules | |
run: npm run build-move | |
- name: Test | |
run: npm run test-move |