Skip to content

v0.1.0 release

v0.1.0 release #1

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run cargo-readme check
run: cargo install cargo-readme && cargo readme > TMP_README.md && diff -b TMP_README.md README.md
- name: Run format check
run: cargo fmt --check
- name: Run clippy
run: cargo clippy --all-features -- -D warnings