Skip to content

Fix some compilation, clippy, fmt issues #17

Fix some compilation, clippy, fmt issues

Fix some compilation, clippy, fmt issues #17

Workflow file for this run

name: Rust
on:
- pull_request
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
- run: rustup component add clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo build --verbose
- run: cargo test --verbose