Feature/plmc 242 implement correct duration of vesting #124
Workflow file for this run
This file contains 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: Check Set-Up & Build | |
# Controls when the action will run. | |
on: | |
pull_request: | |
branches: [main] | |
types: [ready_for_review, labeled] | |
label: | |
types: [created, deleted] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
RUSTFLAGS: "" # To ovveride the default "-D warnings" that can be too tedious. | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
check: | |
# The type of runner that the job will run on | |
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 | |
- uses: actions/checkout@v3 | |
- name: Set-Up | |
run: sudo apt update && sudo apt install -y protobuf-compiler clang | |
- name: Install Rust | |
# Using the version specified in the rust-toolchain.toml | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
# Fail fast: check formatting first as it doesn't require compilation | |
- name: Check formatting | |
run: cargo fmt --all --check | |
- name: Check Build Parachain Runtime | |
run: | | |
SKIP_WASM_BUILD=1 cargo check --release -p polimec-parachain-runtime | |
test: | |
# This job runs only if `check` is successful | |
needs: check | |
# The type of runner that the job will run on | |
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 | |
- uses: actions/checkout@v3 | |
- name: Set-Up | |
run: sudo apt update && sudo apt install -y protobuf-compiler clang | |
- name: Install Rust | |
# Using the version specified in the rust-toolchain.toml | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Test the Parachain | |
run: | | |
SKIP_WASM_BUILD=1 cargo test --release |