Skip to content

test coverage added for file.rs; next docs.rs #26

test coverage added for file.rs; next docs.rs

test coverage added for file.rs; next docs.rs #26

name: Cargo Format
on:
push:
paths:
- '**/*.rs'
pull_request:
paths:
- '**/*.rs'
env:
CARGO_TERM_COLOR: always
jobs:
format:
name: Check Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check