Skip to content

Commit 79be897

Browse files
rjalanderafrittoli
authored andcommitted
Create linter.yml for checkstyle
1 parent 79019d2 commit 79be897

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/linter.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Lint Code Base
3+
on:
4+
push:
5+
branches-ignore: [master, main]
6+
pull_request:
7+
branches: [master, main]
8+
jobs:
9+
build:
10+
name: Lint Code Base
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
- name: Lint Code Base
18+
uses: github/super-linter@v4
19+
env:
20+
VALIDATE_ALL_CODEBASE: false
21+
DEFAULT_BRANCH: main
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)