Skip to content

Commit

Permalink
Create gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
adityamaru authored Jul 8, 2024
1 parent 6f96bbc commit 9ccc3fd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Java CI with Gradle

on:
push:
workflow_dispatch:

jobs:
build:

runs-on: blacksmith-staging
permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle
uses: useblacksmith/setup-gradle@v666

- name: Build with Gradle Wrapper
run: ./gradlew version

0 comments on commit 9ccc3fd

Please sign in to comment.