Skip to content

Commit

Permalink
Merge pull request #2835 from ChristianMurphy/chore/gradle-actions
Browse files Browse the repository at this point in the history
chore(ci): setup gradle action and submit dependencies back to GitHub
  • Loading branch information
ChristianMurphy authored Aug 22, 2024
2 parents 7f80098 + 4a3d360 commit b7c7aa8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: CI
permissions:
contents: write
on:
push:
branches:
Expand Down Expand Up @@ -32,13 +34,16 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v3
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.java-distribution }}
java-version: ${{ matrix.java-version }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Generate and submit dependency graph
if: ${{ github.event_name == 'push' }}
uses: gradle/actions/dependency-submission@v4
- name: Build and Test
run: ./gradlew -S --no-daemon --no-parallel build jacocoAggregateReport coveralls
- name: Lint JavaScript
Expand Down

0 comments on commit b7c7aa8

Please sign in to comment.