Skip to content

clippy: Fix some warnings. #49

clippy: Fix some warnings.

clippy: Fix some warnings. #49

Workflow file for this run

name: Rustfmt
on:
# Triggers the workflow on push request events but only for the master branch
push:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Toolchain setup
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt
- uses: actions/checkout@v3
- name: Run rustfmt
run: cargo fmt --check