Skip to content

lint corrections, doc corrections, workflow improvements and num-trai… #219

lint corrections, doc corrections, workflow improvements and num-trai…

lint corrections, doc corrections, workflow improvements and num-trai… #219

Workflow file for this run

name: fmt
on:
push:
pull_request:
branches: [ main, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
default: true
- name: fmt
run: cargo +nightly fmt --all -- --check