Skip to content

Commit

Permalink
Merge pull request #671 from ChristianMurphy/chore/gradle-actions
Browse files Browse the repository at this point in the history
chore(ci): setup GitHub action for gradle
  • Loading branch information
ChristianMurphy authored Aug 22, 2024
2 parents bad2e09 + ed74a5c commit 04513dd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .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 @@ -37,7 +39,12 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.java-distribution }}
java-version: ${{ matrix.java-version }}
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
run: ./gradlew -i -S build
- name: Tomcat Install
Expand Down

0 comments on commit 04513dd

Please sign in to comment.