Skip to content

Merge pull request #36 from gear-foundation/tm/update-deps #86

Merge pull request #36 from gear-foundation/tm/update-deps

Merge pull request #36 from gear-foundation/tm/update-deps #86

Workflow file for this run

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