Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
add a build workflow
  • Loading branch information
OkelloSam21 authored Mar 18, 2024
1 parent dcc0ae3 commit 92d3de4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Gradle project
on: push
jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v2
- name: TODO to Issue
uses: alstr/[email protected]
id: todo
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew build

0 comments on commit 92d3de4

Please sign in to comment.