Skip to content

chore: changed docker image for builders #1225

chore: changed docker image for builders

chore: changed docker image for builders #1225

Workflow file for this run

name: Cargo Check
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
checker:
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
container:
image: paritytech/ci-unified:bullseye-1.71.0-v20230727
runs-on:
- self-hosted
- x64-monster
steps:
- uses: actions/checkout@v2
- name: Rustup show
run: |
rustup show
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: check workspace
run: |
rustup target add wasm32-unknown-unknown
rustup +nightly target add wasm32-unknown-unknown
cargo check --workspace --locked
- name: check no_std
run: ./scripts/no_std_checks.sh
- name: pallet-ibc check benchmarks
run: cargo test -p pallet-ibc --release --locked --features=runtime-benchmarks