Skip to content

v0.5.2 version bump #754

v0.5.2 version bump

v0.5.2 version bump #754

Workflow file for this run

name: Check Rust formatting
on:
pull_request:
branches: [ "main" ]
jobs:
check-rust-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Check format
run: cargo fmt -- --check