Skip to content

Commit

Permalink
Add gradle test workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Heiko Kiesel <[email protected]>
  • Loading branch information
Heiko Kiesel authored and Weltraumschaf committed Jul 28, 2023
1 parent 6b69a6b commit a50f3ff
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# SPDX-FileCopyrightText: 2023 iteratec GmbH
#
# SPDX-License-Identifier: Apache-2.0

# This workflow will test a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java Tests
on: push

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: adopt
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

0 comments on commit a50f3ff

Please sign in to comment.