Skip to content

Commit

Permalink
Update workflow to use action setup-gradle@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Chelombitko committed Aug 22, 2024
1 parent 21dfb01 commit 9a9f854
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 31 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build
on:
push:
branches:
- develop
pull_request:
branches:
- develop

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build
run: ./gradlew build publishToMavenLocal
- name: Build sample
run: ./gradlew -p sample marathon --dry-run
31 changes: 0 additions & 31 deletions .github/workflows/ci.yml

This file was deleted.

0 comments on commit 9a9f854

Please sign in to comment.