Skip to content

Auto-Update substrate-parachain-template from polkadot-v0.9.43 (#174) #4

Auto-Update substrate-parachain-template from polkadot-v0.9.43 (#174)

Auto-Update substrate-parachain-template from polkadot-v0.9.43 (#174) #4

Workflow file for this run

name: Test Code
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
pull_request:
branches:
- main
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test-code:
runs-on: ubuntu-22.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
- name: Install linux dependencies
run: sudo apt-get install -y clang libssl-dev llvm libudev-dev protobuf-compiler
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup target add wasm32-unknown-unknown
# Rust cache
- uses: Swatinem/rust-cache@v2
# Enable this for clippy linting.
# - name: Check and Lint Code
# run: cargo +nightly clippy -- -D warnings
- name: Check Code
run: cargo check
- name: Test Code
run: cargo test