Skip to content

Commit 794253c

Browse files
authored
Merge pull request #3 from FalkorDB/fix-ci-compilation-error
Fix CI compilation error in Twitter integration test
2 parents 2ef5d0b + db91b5f commit 794253c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ jobs:
135135
${{ runner.os }}-maven-
136136
137137
- name: Run Checkstyle
138-
run: ./mvnw checkstyle:check -B
138+
run: ./mvnw validate -B

etc/checkstyle/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"https://checkstyle.org/dtds/configuration_1_3.dtd">
2222
<module name="com.puppycrawl.tools.checkstyle.Checker">
2323
<module name="SuppressionFilter">
24-
<property name="file" value="${basedir}/etc/checkstyle/suppressions.xml"/>
24+
<property name="file" value="etc/checkstyle/suppressions.xml"/>
2525
</module>
2626
<module name="io.spring.javaformat.checkstyle.SpringChecks">
2727
<property name="excludes" value="io.spring.javaformat.checkstyle.check.SpringAvoidStaticImportCheck"/>

src/test/java/org/springframework/data/falkordb/integration/FalkorDBTwitterIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ private void clearGraph() {
284284
*/
285285
public static void main(String[] args) {
286286

287-
FalkorDBTwitterIntegrationTest test = new FalkorDBTwitterIntegrationTest();
287+
FalkorDBTwitterIntegrationTests test = new FalkorDBTwitterIntegrationTests();
288288

289289
try {
290290
test.setUp();

0 commit comments

Comments
 (0)