Skip to content

style: fix remaining rustfmt formatting #5

style: fix remaining rustfmt formatting

style: fix remaining rustfmt formatting #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Test
run: cargo test
- name: Clippy
run: cargo clippy -- -D warnings
- name: Format check
run: cargo fmt -- --check