Skip to content

Merge pull request #9 from podusowski/include-readme-in-doc #31

Merge pull request #9 from podusowski/include-readme-in-doc

Merge pull request #9 from podusowski/include-readme-in-doc #31

Workflow file for this run

name: Rust
on: push
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check rust formatting
run: cargo fmt --all --check
- name: Clippy
run: cargo clippy --all-features