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 5cc170a commit 3dfc0f2Copy full SHA for 3dfc0f2
1 file changed
.github/workflows/test.yml
@@ -1,18 +1,26 @@
1
-name: "test"
2
-
+name: test
3
on:
4
push:
+ # ignores tags
5
+ branches:
6
+ - "**"
7
pull_request:
8
+ workflow_dispatch:
9
10
jobs:
- test:
- runs-on: "ubuntu-latest"
11
+ build:
12
+ runs-on: ubuntu-latest
13
steps:
- - name: Checkout sources
- uses: actions/checkout@v2
- - name: Set up JDK 17
14
- uses: actions/setup-java@v1
+ - name: checkout repository
15
+ uses: actions/checkout@v4
16
+ - name: validate gradle wrapper
17
+ uses: gradle/wrapper-validation-action@v2
18
+ - name: setup java
19
+ uses: actions/setup-java@v4
20
with:
- java-version: 17
- - name: Build artifacts
- run: ./gradlew build
21
+ distribution: "temurin"
22
+ java-version: 21
23
+ - name: build
24
+ run: |
25
+ chmod +x ./gradlew
26
+ ./gradlew build
0 commit comments