Skip to content

Formatting

Formatting #340

Workflow file for this run

name: tests & formatting
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- run: cargo fmt -- --check && cargo test --features rest #&& cargo clippy -- -Dwarnings && cargo test --all-features