Skip to content

Commit e7f3b17

Browse files
committed
Add lint job to run on PRs
Signed-off-by: Jamo Luhrsen <jluhrsen@gmail.com>
1 parent 7a97731 commit e7f3b17

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/lint.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
workflow_dispatch:
11+
12+
jobs:
13+
lint:
14+
name: Lint
15+
runs-on: ubuntu-24.04
16+
steps:
17+
- name: Check out code
18+
uses: actions/checkout@v4
19+
20+
- name: Run lint
21+
run: make lint

0 commit comments

Comments
 (0)