Enable teleport of native token to Assethub #1141
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: Test Code | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test-code: | |
| runs-on: ubuntu-latest | |
| env: | |
| # Make sure CI fails on all warnings, including Clippy lints | |
| RUSTFLAGS: "-Dwarnings" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Free up Space and Installation | |
| uses: ./.github/actions/shared | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Test | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --release | |
| - name: Test for Runtime Benchmarks | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --release --features=runtime-benchmarks,try-runtime |