Release candidate: v0.66 #4561
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: Templates CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| permissions: | |
| checks: write | |
| pull-requests: write | |
| jobs: | |
| template_test_current: | |
| name: Template tool test - current (unreleased) templates | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: 1.87 | |
| target: wasm32v1-none | |
| - name: Install prerequisites | |
| run: | | |
| cargo install wasm-opt | |
| cargo install --path framework/meta | |
| sc-meta install mx-scenario-go --tag v5.1.0 | |
| which wasm-opt | |
| which mx-scenario-go | |
| mx-scenario-go --version | |
| - name: Run template tool test | |
| run: | | |
| cd framework/meta | |
| cargo test --features template-test-current |