Skip to content

add readme

add readme #167

Workflow file for this run

name: Build-Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly
- run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt
- run: cargo +nightly fmt --check
- run: cargo build --all-features --verbose
- run: cargo test --all
- run: cargo test --all --all-features