comchan 0.10.0

A Blazingly Fast and Minimal Serial Monitor for Embedded Applications
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Format the Rust Code

on:
    pull_request: 
    push: 
      branches: [ "main" ]

jobs:
  fmt: 
      runs-on: ubuntu-latest
      
      steps:
          - uses: actions/checkout@v6
          - uses: dtolnay/rust-toolchain@stable
            with:
                components: rustfmt
          - run: cargo fmt --all -- --check