use wasm32v1-none #2574
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: Test | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - polkadot-** | |
| paths-ignore: | |
| - '**/README.md' | |
| push: | |
| branches: | |
| - master | |
| - polkadot-** | |
| paths-ignore: | |
| - '**/README.md' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: [self-hosted] | |
| env: | |
| SCCACHE_CACHE_SIZE: "60G" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@nightly | |
| - name: Check format | |
| run: make dev-format-check | |
| - name: Update | |
| run: | | |
| cargo update | |
| cargo update base64ct --precise 1.6.0 # 1.8.0 requires the Cargo feature called `edition2024` | |
| cargo update pallet-revive-proc-macro --precise 0.3.0 # TODO: https://github.com/paritytech/polkadot-sdk/issues/9425 | |
| - name: Run clippy | |
| run: cargo clippy -- -D warnings | |
| - name: Check for Wasm | |
| run: make dev-check | |
| - name: Run tests | |
| run: make dev-test |