Merge pull request #34 from gear-foundation/tm/update-workspace #81
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 | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
build-and-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
override: true | |
- name: Install Clippy | |
run: rustup component add clippy | |
- name: Install Rustfmt | |
run: rustup component add rustfmt | |
- name: Install rust-src component | |
run: rustup component add rust-src --toolchain stable-x86_64-unknown-linux-gnu | |
- name: Check formatting | |
run: cargo fmt --all --check | |
- name: Run Clippy | |
run: cargo clippy -r --all -- -D warnings | |
- name: Prepare environment | |
run: | | |
mkdir -p target/tmp | |
curl -L https://get.gear.rs/gear-v1.6.1-x86_64-unknown-linux-gnu.tar.xz -o - | tar xJ -C target/tmp | |
- name: Run tests | |
run: cargo test -r --all -- --ignored |