Skip to content

Merge pull request #30 from jkfran/dependabot/cargo/rustix-0.36.16 #94

Merge pull request #30 from jkfran/dependabot/cargo/rustix-0.36.16

Merge pull request #30 from jkfran/dependabot/cargo/rustix-0.36.16 #94

Workflow file for this run

name: Rustfmt
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check_rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Check code formatting
run: cargo fmt --all -- --check