From 4aecfe7a3c8654597bac650e0efb2ef23f0f5475 Mon Sep 17 00:00:00 2001 From: Ajay Negi Date: Mon, 2 Sep 2024 10:38:47 +0530 Subject: [PATCH] Implement code quality and formatting checks --- .github/workflows/build-test-lint-format.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-test-lint-format.yml b/.github/workflows/build-test-lint-format.yml index 5d6375a..03f928c 100644 --- a/.github/workflows/build-test-lint-format.yml +++ b/.github/workflows/build-test-lint-format.yml @@ -21,13 +21,13 @@ jobs: java-version: '17' distribution: 'temurin' - - name: Cache Maven dependencies - uses: actions/cache@v3 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- +# - name: Cache Maven dependencies +# uses: actions/cache@v3 +# with: +# path: ~/.m2/repository +# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} +# restore-keys: | +# ${{ runner.os }}-maven- - name: Install dependencies run: mvn clean install -DskipTests