From c56b79878b2ab79da461e61467c3b8da7f8bc714 Mon Sep 17 00:00:00 2001 From: tomaytotomato <971697+tomaytotomato@users.noreply.github.com> Date: Tue, 23 Jul 2024 16:05:58 +0100 Subject: [PATCH] Updating linting rules to use checkstyle.xml --- .github/workflows/master.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index fa433fd..f041c4d 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -33,8 +33,8 @@ jobs: - name: Install Maven dependencies run: mvn install -DskipTests - - name: Lint code - run: mvn checkstyle:check + - name: Lint code with Checkstyle + run: mvn checkstyle:check -Dcheckstyle.config.location=checkstyle.xml - name: Build with Maven run: mvn compile