diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 6eb03dd..e6a1882 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -27,6 +27,8 @@ jobs: key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} restore-keys: | ${{ runner.os }}-gradle- + - name: Configure Gradle + uses: ./.github/actions/configure-gradle - name: Build and Test ${{ env.PACKAGE_NAME }} run: | ./gradlew build @@ -44,6 +46,8 @@ jobs: key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} restore-keys: | ${{ runner.os }}-gradle- + - name: Configure Gradle + uses: ./.github/actions/configure-gradle - name: Build and Test ${{ env.PACKAGE_NAME }} run: | ./gradlew build @@ -53,6 +57,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + - name: Configure Gradle + uses: ./.github/actions/configure-gradle - name: Build and Test ${{ env.PACKAGE_NAME }} run: | ./gradlew build \ No newline at end of file diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c2ec611..79de527 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,6 +18,10 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + - name: Run ls + run: ls & pwd + - name: Configure Gradle + uses: ./.github/actions/configure-gradle - name: Lint ${{ env.PACKAGE_NAME }} run: | ./gradlew ktlint