Skip to content

Update README

Update README #111

Workflow file for this run

on: [push, pull_request]
name: CI
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Build, lint, test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- name: cargo test examples
uses: actions-rs/cargo@v1
with:
command: test
args: --examples --all-features
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
bench:
name: Bench
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: cargo bench
uses: actions-rs/cargo@v1
with:
command: bench