Optimize GF(256) interpolation in decrypt #2347
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
| name: Move | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| MOVE_PACKAGES_PATH: move | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Suiup | |
| run: curl -sSfL https://raw.githubusercontent.com/Mystenlabs/suiup/main/install.sh | sh | |
| - name: Install Sui CLI | |
| run: | | |
| export PATH="$HOME/.suiup/bin:$PATH" | |
| suiup install sui@testnet -y | |
| - name: Run move tests | |
| run: | | |
| export PATH="$HOME/.suiup/bin:$PATH" | |
| for dir in move/*; do | |
| echo "Running sui move test in $dir" | |
| sui move test --warnings-are-errors --gas-limit 5000000000 --path $dir | |
| done | |
| formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: MystenLabs/move-formatter-action@v1 | |
| with: | |
| prettier-plugin-move-version: "latest" | |
| working-directory: ${{ env.MOVE_PACKAGES_PATH }} |