Skip to content

cNikolaou/test-sui-move

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Sui Move Test Action

Run npx scaf test on your Sui project directory. This in turn runs:

  • The tests in .move files under the ./packages/ directory (by calling sui move test)
  • The Mocha & Chai tests in the ./test/ directory.

Read more about Scaf and how to write tests for your Sui project.

Test your Sui Move packages with:

name: Test Sui Move Packages

on: [push]

jobs:
  test-action:
    name: Test Sui Move Packages
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Test Sui Move
        uses: cNikolaou/[email protected]