Skip to content

Commit c47b3cc

Browse files
committed
ci: check if code is formatted
1 parent dc8d027 commit c47b3cc

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: CI # Continuous Integration
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
fmt:
8+
runs-on: ubuntu-24.04
9+
steps:
10+
-name: Checkout repository
11+
uses: actions/checkout@v4
12+
-name: Check formatting
13+
run: cargo fmt --check --all

0 commit comments

Comments
 (0)