Bump pallet-balances from 18bb7c7
to bcff60a
#8
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: CI | |
####### DO NOT CHANGE THIS !! ####### | |
on: ["push"] | |
jobs: | |
####### Building and Testing binaries ####### | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Rust toolchain | |
run: rustup show | |
- name: Formatter | |
run: cargo fmt --all | |
- name: Test | |
run: cargo test --release --features=runtime-benchmarks --all |