Add treasuries, vesting and utility #18
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: Build Collator Node | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install protobuf | |
uses: ConorMacBride/[email protected] | |
with: | |
apt: protobuf-compiler | |
- uses: actions/checkout@v3 | |
- name: Check Cargo version | |
run: cargo --version --verbose | |
- name: Check Rust Toolchain | |
run: rustup show --verbose | |
- name: Build | |
run: cargo build --verbose --locked |