Skip to content

default clippy workflow #1

default clippy workflow

default clippy workflow #1

Workflow file for this run

name: Fmt
on: [push, pull_request]
jobs:
fmt:
name: Fmt
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1
- name: Install rustfmt
run: rustup component add rustfmt
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check