Skip to content

Commit

Permalink
Simplify workflows (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
BraisGabin committed Jun 28, 2024
1 parent 0bedb98 commit c98a6ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 21 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/gradle-wrapper-validation.yml

This file was deleted.

12 changes: 9 additions & 3 deletions .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
- name: Run tests
run: ./gradlew test functionalTest
- name: Publish Test Report
Expand All @@ -30,7 +32,9 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
- name: Check that the publish plugin works
run: ./gradlew publishToMavenLocal
staticAnalysis:
Expand All @@ -40,6 +44,8 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
- name: Run static analysis
run: ./gradlew spotlessCheck

0 comments on commit c98a6ae

Please sign in to comment.