Skip to content

Commit 4b5bc67

Browse files
committed
workflows: add plugin ci workflow
1 parent 550ff71 commit 4b5bc67

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/plugin-ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Plugin CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- 'plugin/**'
8+
- '.github/**'
9+
pull_request:
10+
paths:
11+
- 'plugin/**'
12+
- '.github/**'
13+
14+
jobs:
15+
lint:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Check formatting
22+
uses: ./.github/actions/plugin/lint
23+
with:
24+
source-dir: plugin

0 commit comments

Comments
 (0)