Skip to content

Commit

Permalink
feat: gradle workflow (#70)
Browse files Browse the repository at this point in the history
* feat: gradle workflow

* feat: add dist

* fix: param name

* fix: param name

* fix: version

* fix: test script

* fix: test start script

* fix: test run

* fix: gradlew

* feat: gradle woorkfloow action

* fix: argumnent oorder

* fix: remove inline

* fix: remove gradder wrapper validation

* chore: try out

* feat: a github action to build and test the code
  • Loading branch information
arifBurakDemiray authored Sep 20, 2023
1 parent 78ca5b7 commit 32f95f7
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Java Gradle Build and Test

on:
push:
branches:
- master
- staging
pull_request:
branches:
- master
- staging

jobs:
build:
name: Build and Test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'corretto'

- name: Build with Gradle
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629
with:
arguments: build

0 comments on commit 32f95f7

Please sign in to comment.