Skip to content

Clean up some naming #340

Clean up some naming

Clean up some naming #340

Workflow file for this run

on:
push:
pull_request:
branches:
- main
name: Formatting
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Add Rustfmt
run: rustup component add rustfmt
- name: Check formatting
run: cargo fmt --all --check