Skip to content

Commit 9c2211d

Browse files
committed
Update quality assurance workflow with Java and Gradle setup
Signed-off-by: James Bradlee <[email protected]>
1 parent 14dc3e6 commit 9c2211d

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/quality-assurance.yaml

+13-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,19 @@ jobs:
44
tests:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4
8-
- uses: actions/setup-java@v4
7+
- name: Checkout
8+
uses: actions/checkout@v4
9+
- name: Setup Java
10+
uses: actions/setup-java@v4
911
with:
1012
java-version: "21"
1113
distribution: "temurin"
12-
- uses: gradle/gradle-build-action@v3
13-
- run: ./gradlew test
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 -O ${{ runner.temp }}/gradle.zip $distributionUrl
20+
unzip ${{ runner.temp }}/gradle.zip -d $path
21+
ls -la $path
22+

0 commit comments

Comments
 (0)