Skip to content

Commit

Permalink
gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Fornitx committed Jun 28, 2024
1 parent 731562c commit f933351
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Java CI with Gradle

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21

- uses: gradle/actions/setup-gradle@v3

- name: Gradle build
run: gradle build --show-version --no-daemon -Dkotlin_version=2.0.0

0 comments on commit f933351

Please sign in to comment.