Skip to content

Commit

Permalink
Simplify GitHub Actions configuration and update .gitignore
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
meanmail committed Jan 25, 2024
1 parent 3316755 commit 59614b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ jobs:
fail-fast: false
matrix:
version:
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
Expand All @@ -38,8 +33,5 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Install Dependencies
run: ./gradlew build

- name: Run tests
run: ./gradlew test -i
run: ./gradlew test --rerun-tasks
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ classes/

# gradle

.gradle/*
.gradle
build

0 comments on commit 59614b9

Please sign in to comment.