Skip to content

Commit

Permalink
check code + tests (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-eg authored Jan 26, 2025
1 parent d7cd5e8 commit 36f27c6
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: build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 21
distribution: corretto

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Execute Gradle Build
run: ./gradlew clean build --scan

0 comments on commit 36f27c6

Please sign in to comment.