Skip to content

upd pipeline

upd pipeline #132

Workflow file for this run

name: Rustfmt
on: [push, pull_request]
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rustfmt
run: rustup component add rustfmt
- name: Check formatting
run: cargo fmt -- --check