feat(types): Add feature to RLP encode contract events. #1060
Workflow file for this run
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: Run aptos framework checks | |
| on: | |
| push: | |
| branches: [ "dev", "release/**", "feature/**" ] | |
| paths-ignore: [ '**/*.md' ] | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review] | |
| branches: [ "dev", "release/**", "feature/**" ] | |
| paths-ignore: [ '**/*.md' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_NET_GIT_FETCH_WITH_CLI: true | |
| DOCKER_BUILDKIT: 1 | |
| FORGE_BIN: ~/.foundry/bin/forge | |
| SUI_BIN: ~/.cargo/bin/sui | |
| APTOS_BIN: ~/.local/bin/aptos | |
| SCRYPTO_BIN: ~/.cargo/bin/scrypto | |
| jobs: | |
| check: | |
| runs-on: ghr-elastic-supra-aptos-core-runner | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: actions/checkout@v4 | |
| - run: cargo check --workspace | |
| test: | |
| runs-on: ghr-elastic-supra-aptos-core-runner | |
| timeout-minutes: 90 | |
| steps: | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: actions/checkout@v4 | |
| - run: cargo test --release -p aptos-types --lib unit_tests --no-fail-fast | |
| - run: cargo test --release -p aptos-framework -- --skip prover | |
| - run: RUST_MIN_STACK=104857600 cargo test run -p language-e2e-testsuite --no-fail-fast | |
| - run: RUST_MIN_STACK=104857600 cargo test run -p e2e-move-tests --no-fail-fast |