Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

ci: add cargo fmt

ci: add cargo fmt #1

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- uses: actions/checkout@v3
- run: |
rustup component add rustfmt
cargo fmt --all -- --check