Skip to content

feat: remove linter warnings by applying cargo clippy #135

feat: remove linter warnings by applying cargo clippy

feat: remove linter warnings by applying cargo clippy #135

name: Build Move crates
on:
pull_request:
branches:
- main
paths:
- language/**
- Cargo.toml
- Cargo.lock
- .github/workflows/check-move-packages-pull-request.yml
- .github/workflows/check-move-packages-push.yml
env:
CARGO_TERM_COLOR: always
jobs:
check-move-packages:
runs-on: ubuntu-latest
name: Check build/tests for move packages
steps:
- uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: ./.github/actions/build-setup
# move-vm-runtime
- name: Build move-vm-runtime (without default features)
run: cargo build --release --no-default-features -p move-vm-runtime
- name: Run move-vm-runtime tests
run: cargo test -p move-vm-runtime
# move-cli
- name: Build move-cli
run: cargo build --release -p move-cli
- name: Run move-cli tests
run: cargo test -p move-cli