We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b69a6b commit a50f3ffCopy full SHA for a50f3ff
.github/workflows/test.yml
@@ -0,0 +1,24 @@
1
+# SPDX-FileCopyrightText: 2023 iteratec GmbH
2
+#
3
+# SPDX-License-Identifier: Apache-2.0
4
+
5
+# This workflow will test a Java project with Gradle
6
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
7
8
+name: Java Tests
9
+on: push
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-22.04
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Set up JDK 17
17
+ uses: actions/setup-java@v3
18
+ with:
19
+ java-version: 17
20
+ distribution: adopt
21
+ - name: Grant execute permission for gradlew
22
+ run: chmod +x gradlew
23
+ - name: Build with Gradle
24
+ run: ./gradlew build
0 commit comments