Skip to content

Commit c78099a

Browse files
committed
Try master instead of v0.3.1, add test class
1 parent 2ed56cf commit c78099a

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/java-checkstyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
java-version: '12.x'
2020

2121
- name: Run checkstyle with reviewdog
22-
uses: nikitasavinov/checkstyle-action@v0.3.1
22+
uses: nikitasavinov/checkstyle-action@master
2323
with:
2424
github_token: ${{ secrets.GITHUB_TOKEN }}
2525
# submit review comments based on reviewdog findings

src/com/codefortomorrow/Test.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.codefortomorrow;
2+
3+
public class Test {
4+
public static void main(String[] args) {
5+
System.out.println("Testing");
6+
}
7+
8+
public static void test() {
9+
System.out.println("Testing");
10+
System.out.println("Testing");
11+
System.out.println("Testing");
12+
}
13+
}

0 commit comments

Comments
 (0)