Skip to content

Workflow Improvements #7

Workflow Improvements

Workflow Improvements #7

Workflow file for this run

name: cargo fmt
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/[email protected]
- name: Formats all bin and lib files of the current crate using rustfmt
run: |
cargo fmt --all -- --check