Skip to content

Update gradle command to use ls -q1 instead of ls -1 #5

Update gradle command to use ls -q1 instead of ls -1

Update gradle command to use ls -q1 instead of ls -1 #5

name: Quality Assurance
on: [workflow_call, push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "temurin"
- name: Setup Gradle
run: |
source gradle/wrapper/gradle-wrapper.properties
echo "Gradle URL: $distributionUrl"
path=${{ runner.temp }}/gradle
wget -O ${{ runner.temp }}/gradle.zip $distributionUrl
unzip ${{ runner.temp }}/gradle.zip -d $path
ls -q1 $path