Skip to content

Commit f4e40c8

Browse files
committed
update ci pipeline to include new linter
1 parent 75ccc27 commit f4e40c8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
- name: Check code format
2828
run: ./gradlew spotlessCheck
2929

30+
- name: Lint
31+
run: make lint
32+
3033
- name: Test
3134
run: make test
3235

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fmt:
55
@./gradlew spotlessApply
66

77
lint:
8-
@echo "linting not ready yet"
8+
@./gradlew pmdMain
99

1010
test:
1111
@./gradlew test

0 commit comments

Comments
 (0)