Skip to content

Commit 435569d

Browse files
committed
ci: Add a github actions workflow for lint
Signed-off-by: utam0k <k0ma@utam0k.jp>
1 parent 5d5d921 commit 435569d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/lint.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Lint
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
check-format:
7+
runs-on: ubuntu-24.04
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
- name: Run make -C schema fmt
12+
run: make -C schema fmt
13+
- name: Check for changes
14+
run: git diff --exit-code

0 commit comments

Comments
 (0)