Skip to content

Make iteration number more precise. #23

Make iteration number more precise.

Make iteration number more precise. #23

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