Skip to content

Commit cd7c2a7

Browse files
Add code quality workflow for linting on pull requests and main branch pushes
1 parent 793b815 commit cd7c2a7

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/code-quality.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Code Quality
2+
3+
on:
4+
pull_request:
5+
types: [synchronize, opened, reopened]
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Lint
18+
run: echo "Linting..."
19+

0 commit comments

Comments
 (0)