Skip to content

Add README

Add README #39

Workflow file for this run

name: Format Rust code
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check code formatting
run: cargo fmt --all -- --check