Skip to content

Commit 43d624a

Browse files
committed
chore: add code check action config
1 parent 8dbff9b commit 43d624a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/check-style.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: check-style
2+
3+
on:
4+
push:
5+
branches: [ main, dev, tc-l1, tc-l2, tc-l3 ]
6+
7+
jobs:
8+
check-style:
9+
name: Check Code Style
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Install dependencies
14+
run: |
15+
echo "fake action"

0 commit comments

Comments
 (0)