Skip to content

Commit bb9ed7a

Browse files
committed
Reformat code and introduce rustfmt check in CI
1 parent da6161e commit bb9ed7a

File tree

6 files changed

+444
-219
lines changed

6 files changed

+444
-219
lines changed

.github/workflows/rust.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Rust
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
formatting:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
11+
- name: Format
12+
run: cargo fmt --all -- --check

0 commit comments

Comments
 (0)