Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Bump arklib version #31

Bump arklib version

Bump arklib version #31

Workflow file for this run

name: Build CLI tool
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Build ARK-CLI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Check
run: cargo check
- name: Format
run: cargo fmt --all -- --check
- name: Build Release
run: cargo build --verbose --release