Skip to content

Update Cargo.toml

Update Cargo.toml #98

Workflow file for this run

name: Verify build
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Build & check WNFS-utils
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Check
run: cargo check
- name: Format
run: cargo fmt --all -- --check
- name: Build Debug
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -- --test-threads=1
- name: Build Release
run: cargo build --verbose --release