From 829d1e1e3e60b69be8054794fce9c01802ebef37 Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Thu, 23 May 2024 17:14:32 +0200 Subject: [PATCH] Use subdirectory to prevent editorconfig to check metafacture-fix installation (#1997) --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index feb000dc0..ac2ea345f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,11 @@ jobs: cd metafacture-fix git checkout 1.0.0 ./gradlew publishToMavenLocal - cd .. + cd ../.. - name: Build with Maven run: | + mkdir build # prevents editorconfig to check also metafacture-fix + cd build mvn install mvn editorconfig:check - name: Cache SBT