This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Use pallets v0.2.0 - bounded data - import #106
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 Node | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install required packages | |
uses: ConorMacBride/install-package@v1.1.0 | |
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 |