Skip to content

feat: pairs file path arg (#19) #30

feat: pairs file path arg (#19)

feat: pairs file path arg (#19) #30

Workflow file for this run

name: rust fmt check
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust nightly toolchain
run: rustup toolchain install nightly
- name: Install rustfmt component
run: rustup component add rustfmt --toolchain nightly
- name: Run rustfmt check
run: cargo +nightly fmt -- --check --config imports_granularity=Crate --config group_imports=StdExternalCrate