From e08d818fbc4921b86fcbe613f6e1d46517f608f9 Mon Sep 17 00:00:00 2001 From: meanmail Date: Thu, 25 Jan 2024 16:06:05 +0100 Subject: [PATCH] Simplify GitHub Actions configuration and update .gitignore Reduced the number of versions being tested in GitHub Actions and modified the test command to re-run tasks on failure. Removed the 'Install Dependencies' step since dependencies can now be managed by the Gradle wrapper scripts. Additionally, included the 'build' directory in the .gitignore file. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9eae3048..5ccf9b09 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,4 +34,4 @@ jobs: uses: gradle/gradle-build-action@v2 - name: Run tests - run: ./gradlew test --rerun-tasks + run: ./gradlew test --rerun-tasks --info