File tree 3 files changed +15
-7
lines changed
3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : Setup Gradle
2
+ description : Setup Gradle
3
+ runs :
4
+ using : composite
5
+ steps :
6
+ - shell : sh
7
+ run : |
8
+ source gradle/wrapper/gradle-wrapper.properties
9
+ echo "Gradle URL: $distributionUrl"
10
+ path=${{ runner.temp }}/gradle
11
+ wget --no-verbose -O ${{ runner.temp }}/gradle.zip $distributionUrl
12
+ unzip ${{ runner.temp }}/gradle.zip -d $path
13
+ echo $path/$(ls -1 $path)/bin >> $GITHUB_PATH
Original file line number Diff line number Diff line change 12
12
java-version : " 21"
13
13
distribution : " temurin"
14
14
- name : Setup Gradle
15
- run : |
16
- source gradle/wrapper/gradle-wrapper.properties
17
- echo "Gradle URL: $distributionUrl"
18
- path=${{ runner.temp }}/gradle
19
- wget --no-verbose -O ${{ runner.temp }}/gradle.zip $distributionUrl
20
- unzip ${{ runner.temp }}/gradle.zip -d $path
21
- echo $path/$(ls -1 $path)/bin >> $GITHUB_PATH
15
+ uses : ./.github/actions/setup-gradle
22
16
- name : Tests
23
17
run : gradle test
24
18
env :
Original file line number Diff line number Diff line change 8
8
! /.github /CODEOWNERS
9
9
! /.github /assets /next.png
10
10
! /.github /workflows /* .yaml
11
+ ! /.github /actions /* /* .yaml
11
12
! /.github /CODE_OF_CONDUCT.md
12
13
! /.github /SECURITY.md
13
14
You can’t perform that action at this time.
0 commit comments